-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
59 lines (44 loc) · 1016 Bytes
/
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
SRCNAME = \
main.cpp\
Client.cpp\
Location.cpp\
Manager.cpp\
Server.cpp\
Webserver.cpp\
Request.cpp\
Response.cpp\
Type.cpp\
CGI.cpp\
utils.cpp
SRCDIR = ./srcs/
SRCS = ${addprefix ${SRCDIR}, ${SRCNAME}}
INC = -I ./includes/
NAME = webserv
CC = clang++
ifdef WITH_BONUS
CFLAGS = -Wall -Wextra -Werror -std=c++98 -D BONUS ${INC}
else
CFLAGS = -Wall -Wextra -Werror -std=c++98 ${INC}
endif
DCFLAGS = -g3 -fsanitize=address # -D BONUS
${NAME} : $(SRCS)
${CC} ${CFLAGS} ${SRCS} -o ${NAME}
test:
${CC} ${DCFLAGS} ${SRCS} ${INC} -o ${NAME}
rm -rf ./tests/put_test/file_should_exist_after
./webserv configs/test.conf
test_hyeonski:
${CC} ${DCFLAGS} ${SRCS} ${INC} -o ${NAME}
rm -rf ./tests/put_test/file_should_exist_after
rm -rf .res_*
./webserv configs/test_hyeonski.conf
bonus:
make WITH_BONUS=1 all
fclean:
rm -rf ./tests/put_test/file_should_exist_after
rm -rf ./tests/put_test/multiple_same
rm -rf webserv.dSYM
rm -rf ${NAME}
re: fclean all
all: ${NAME}
.PHONY: fclean re test