-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
44 lines (34 loc) · 855 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
##
## EPITECH PROJECT, 2022
## B-CCP-400-STG-4-1-theplazza-jeffrey.winkler
## File description:
## Makefile
##
SRC = src/com/NamedPipes.cpp \
src/com/Pipes.cpp \
src/cond/CCondVar.cpp \
src/kitchen/pizzas/APizza.cpp \
src/kitchen/pizzas/Serializer.cpp \
src/kitchen/Kitchen.cpp \
src/mutex/CMutex.cpp \
src/process/CProcess.cpp \
src/thread/CThread.cpp \
src/thread/Jobs.cpp \
src/thread/ThreadPool.cpp \
src/ArgHandler.cpp \
src/Logistic.cpp \
src/main.cpp \
src/Order.cpp \
src/Reception.cpp \
NAME = plazza
CPPFLAGS += -std=c++17
OBJ = $(SRC:.cpp=.o)
all: $(NAME)
$(NAME): $(OBJ)
g++ -o $(NAME) $(OBJ) $(CPPFLAGS) -lpthread
clean:
rm -f $(OBJ)
fclean: clean
rm -f $(NAME)
re: fclean all
.PHONY: clean fclean all re