still working on integrating the config file stuff

This commit is contained in:
Me
2022-07-25 21:00:04 +02:00
parent b9ccf09089
commit 35ac55b5e8
9 changed files with 142 additions and 36 deletions

View File

@@ -13,11 +13,19 @@ VPATH = $(DIR_SRCS)
DIR_SRCS = srcs
HEADERS_D = ./srcs
HEADERS = Webserv.hpp
HEADERS = Webserv.hpp \
ConfigParser.hpp \
ServerConfig.hpp \
LocationConfig.hpp \
DEPENDENCIES = $(HEADERS:%=$(HEADERS_D)/%)
SRCS = main.cpp Webserv.cpp
SRCS = main.cpp \
Webserv.cpp \
ConfigParser.cpp \
ServerConfig.cpp \
LocationConfig.cpp \
DIR_OBJS = builds
OBJS = $(SRCS:%.cpp=$(DIR_OBJS)/%.o)