-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
executable file
·23 lines (18 loc) · 1.18 KB
/
Makefile
File metadata and controls
executable file
·23 lines (18 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# **************************************************************************** #
# #
# ::: :::::::: #
# Makefile :+: :+: :+: #
# +:+ +:+ +:+ #
# By: jjosephi <jjosephi@student.42.us.org> +#+ +:+ +#+ #
# +#+#+#+#+#+ +#+ #
# Created: 2020/06/01 14:58:30 by jjosephi #+# #+# #
# Updated: 2020/06/01 14:58:30 by jjosephi ### ########.fr #
# #
# **************************************************************************** #
NAME = serv
all: $(NAME)
$(NAME) :
clang++ -std=c++11 http_serv.cpp init.cpp Data.cpp process.cpp requests.cpp slct_loop.cpp parse.cpp utils.cpp -o serv
re :
rm -f serv
clang++ -std=c++11 http_serv.cpp init.cpp Data.cpp process.cpp requests.cpp slct_loop.cpp parse.cpp utils.cpp -o serv