forked from PIut0/Webserv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
78 lines (60 loc) · 1.67 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
NAME = webserv
INCLUDE = -I./include -I./include/http -I./include/config -I./include/error -I./include/common -I./include/debug -I./include/core -I./include/core/method -I./include/util
CXX = c++
ifdef SANI
CXXFLAGS = -g -Wall -Wextra -Werror -std=c++98 $(INCLUDE) -fsanitize=address
else
CXXFLAGS = -g -Wall -Wextra -Werror -std=c++98 $(INCLUDE)
endif
MAIN = main.cpp
SRC = core/KQueue.cpp \
core/Server.cpp \
core/Client.cpp \
core/Method.cpp \
core/Method/GetMethod.cpp \
core/Method/PutMethod.cpp \
core/Method/PostMethod.cpp \
core/Method/DeleteMethod.cpp \
core/Method/Cgi.cpp \
util/utils.cpp \
util/mimes.cpp \
util/process.cpp \
debug/System.cpp \
debug/Monitor.cpp \
http/Header.cpp \
http/RequestHeader.cpp \
http/ResponseHeader.cpp \
config/ServerBlock.cpp \
config/ServerManager.cpp \
config/LocationBlock.cpp \
SRC_DIR = ./src
OBJ_DIR = ./obj
TEST_DIR = ./test
SRCS = $(addprefix $(SRC_DIR)/, $(SRC))
OBJS = $(addprefix $(OBJ_DIR)/, $(patsubst %.cpp,%.o,$(SRC)))
ifdef TEST
SRCS += $(TEST)
OBJS += $(addprefix $(OBJ_DIR)/, $(patsubst %.cpp,%.o,$(TEST)))
else
SRCS += $(MAIN)
OBJS += $(addprefix $(OBJ_DIR)/, $(patsubst %.cpp,%.o,$(MAIN)))
endif
SHELL = /bin/bash
all : $(NAME)
ifdef TEST
$(OBJ_DIR)/%.o : $(TEST_DIR)/%.cpp
@mkdir -p $(dir $@)
$(CXX) $(CXXFLAGS) -c $< -o $@
endif
$(OBJ_DIR)/%.o : $(SRC_DIR)/%.cpp
@mkdir -p $(dir $@)
$(CXX) $(CXXFLAGS) -c $< -o $@
$(NAME) : $(OBJS)
$(CXX) $(CXXFLAGS) $^ -o $@
bonus : all
clean :
@rm -rf $(OBJ_DIR)
fclean : clean
@rm -f $(NAME)
re : fclean all
.PHONY : all clean fclean re bonus