-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
48 lines (40 loc) · 1013 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
##
## EPITECH PROJECT, 2021
## Makefile
## File description:
## Makefile to call other makefiles
##
all:
@echo "\n[Makefile] compiling core"
@$(MAKE) -C core
@echo "\n[Makefile] compiling games"
@$(MAKE) -C games
@echo "\n[Makefile] compiling graphicals"
@$(MAKE) -C graphicals
re:
@echo "\n[Makefile] compiling core"
@$(MAKE) re -C core
@echo "\n[Makefile] compiling games"
@$(MAKE) re -C games
@echo "\n[Makefile] compiling graphicals"
@$(MAKE) re -C graphicals
clean:
@echo "[Makefile] all temp files removed"
@$(MAKE) clean -C core
@$(MAKE) clean -C games
@$(MAKE) clean -C graphicals
fclean:
@echo "[Makefile] all temp files and binaries removed"
@$(MAKE) fclean -C core
@$(MAKE) fclean -C games
@$(MAKE) fclean -C graphicals
core:
@echo "\n[Makefile] compiling core"
@$(MAKE) -C core
games:
@echo "\n[Makefile] compiling games"
@$(MAKE) -C games
graphicals:
@echo "\n[Makefile] compiling graphicals"
@$(MAKE) -C graphicals
.PHONY: all clean fclean re core games graphicals