-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
43 lines (32 loc) · 864 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
##
## EPITECH PROJECT, 2023
## Makefile
## File description:
## makefile that stack
##
TARGET = leviator
LVT_COMPILER = lvtc
LVT_RUNER = lvtrun
$(TARGET):
"$(MAKE)" -C "$(LVT_COMPILER)"
"$(MAKE)" -C "$(LVT_RUNER)"
debug:
"$(MAKE)" -C "$(LVT_COMPILER)" debug
"$(MAKE)" -C "$(LVT_RUNER)" debug
clean:
"$(MAKE)" -C "$(LVT_COMPILER)" clean
"$(MAKE)" -C "$(LVT_RUNER)" clean
fclean: clean
"$(MAKE)" -C "$(LVT_COMPILER)" fclean
"$(MAKE)" -C "$(LVT_RUNER)" fclean
re: fclean $(TARGET)
tests:
"$(MAKE)" -C "$(LVT_COMPILER)" tests
"$(MAKE)" -C "$(LVT_RUNER)" tests
tests-coverage:
"$(MAKE)" -C "$(LVT_COMPILER)" tests-coverage
"$(MAKE)" -C "$(LVT_RUNER)" tests-coverage
tests-coverage-html-path:
@"$(MAKE)" -C "$(LVT_COMPILER)" tests-coverage-html-path
@"$(MAKE)" -C "$(LVT_RUNER)" tests-coverage-html-path
.PHONY: $(TARGET) fclean re clean all