parsed arguments

This commit is contained in:
bettercallous
2024-04-08 07:20:11 +00:00
parent 8aece78bb2
commit 2fdb0eb6c4
5 changed files with 79 additions and 1 deletions

22
Makefile Normal file
View File

@@ -0,0 +1,22 @@
NAME = ircserv
SRC = main.cpp Server.cpp
OBJ = ${SRC:.cpp=.o}
CXX = c++
CXXFLAGS = -std=c++98 -fsanitize=address -g3#-Wall -Wextra -Werror
all : $(NAME)
$(NAME) : $(OBJ)
$(CXX) $(CXXFLAGS) $(OBJ) -o $(NAME)
clean :
rm -rf *.o
fclean : clean
rm -rf $(NAME)
re : fclean all