Made a basic arg parser and shell implementation of the Server class

This commit is contained in:
iherman-
2026-05-06 18:07:17 +02:00
parent d2e02440b3
commit b47c7dc9b8
5 changed files with 142 additions and 8 deletions

View File

@@ -1,14 +1,8 @@
NAME = ircserv
SRC = main.cpp Server/Server.cpp Client/Client.cpp \
Channel/Channel.cpp \
commands/pass.cpp commands/nick.cpp commands/user.cpp \
commands/join.cpp commands/privmsg.cpp \
commands/part.cpp
SRC = main.cpp Server/Server.cpp
HEADERS = Client/Client.hpp \
Server/Server.hpp \
Channel/Channel.hpp
HEADERS = Server/Server.hpp
OBJ = $(SRC:.cpp=.o)