-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
96 lines (66 loc) · 1.68 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
##
## EPITECH PROJECT, 2023
## Makefile
## File description:
## Makefile of Raytracer
##
SR = src/
SRC = $(shell cat make/math.txt | tr '\n' ' ') \
$(shell cat make/shape.txt | tr '\n' ' ') \
$(shell cat make/utility.txt | tr '\n' ' ') \
$(shell cat make/raytracer.txt | tr '\n' ' ') \
$(shell cat make/arguments.txt | tr '\n' ' ') \
$(shell cat make/parser.txt | tr '\n' ' ') \
SRC_UT = tests/Unit_tests.cpp \
BUILDDIR = build
OBJ = $(patsubst %.cpp, $(BUILDDIR)/%.o, $(SRC))
$(BUILDDIR)/%.o: $(SR)%.cpp
@mkdir -p $(@D)
$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<
NAME = raytracer
LDFLAGS = -lconfig++
IDIR = include
CPPFLAGS = -I./$(IDIR)
CFLAGS = -W -Wall -Wextra
GCCFLAG = g++ -o
FDEBUG = -g3
LOGSFILE = logs.txt
CC = g++
UT = unit_tests
CFLAGS_UT = -std=c++17 -Wall -Wextra -Werror
CPPFLAGS_UT += -I./include
LCRITERION = -lcriterion --coverage
all: $(NAME)
$(NAME): $(OBJ)
$(GCCFLAG) $(NAME) $(OBJ) $(LDFLAGS) > $(LOGSFILE)
debug: $(OBJ)
$(GCCFLAG) $(NAME) $(OBJ) $(LDFLAGS) $(FDEBUG) > $(LOGSFILE)
debug_play: fclean debug
clear
valgrind --track-origins=yes ./$(NAME)
clean:
$(RM) -f $(OBJ) > $(LOGSFILE)
fclean: clean
$(RM) -f $(NAME) >> $(LOGSFILE)
@$(RM) -f $(NAME)
@$(RM) -f $(UT)
@$(RM) -f unit_tests
@$(RM) -f vgcore*
@$(RM) -f *.gcda
@$(RM) -f *.gcno
@$(RM) -f *~
@$(RM) -f *.a
@$(RM) -f *.o
@$(RM) -f *.gch
@$(RM) -f a.out
@$(RM) -f coding-style-reports.log
play: $(NAME)
./$(NAME)
re: fclean all
play_re: re
./$(NAME)
tests_run: fclean
$(CC) -o $(UT) $(SRC_UT) $(CFLAGS_UT) $(CPPFLAGS_UT) \
$(LCRITERION) $(CPPFLAGS_UT)
./$(UT)
.PHONY: all debug debug_play fclean clean play re play_re tests_run