-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
94 lines (90 loc) · 2.56 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
all: build test lint
.PHONY: build
build:
@$(MAKE) -C 01_web_ui build
@$(MAKE) -C 03_tiles build
@$(MAKE) -C 04_load_map build
@$(MAKE) -C 05_actors build
@$(MAKE) -C 06_moving build
@$(MAKE) -C 07_collisions build
@$(MAKE) -C 08_layers build
@$(MAKE) -C 09_viewport_scroll build
@$(MAKE) -C 10_fov build
@$(MAKE) -C 11_sticky_light build
@$(MAKE) -C 12_energy build
@$(MAKE) -C 13_utility build
@$(MAKE) -C 14_utility_annotate build
@$(MAKE) -C 15_memory build
@$(MAKE) -C 16_debug build
@$(MAKE) -C 17_levels build
@$(MAKE) -C 18_multi_level build
@$(MAKE) -C 19_story build
@$(MAKE) -C 20_structure build
@$(MAKE) -C 21_console build
./mkDiff.sh
.PHONY: setup
setup:
@$(MAKE) -C 01_web_ui setup
@$(MAKE) -C 03_tiles setup
@$(MAKE) -C 04_load_map setup
@$(MAKE) -C 05_actors setup
@$(MAKE) -C 06_moving setup
@$(MAKE) -C 07_collisions setup
@$(MAKE) -C 08_layers setup
@$(MAKE) -C 09_viewport_scroll setup
@$(MAKE) -C 10_fov setup
@$(MAKE) -C 11_sticky_light setup
@$(MAKE) -C 12_energy setup
@$(MAKE) -C 13_utility setup
@$(MAKE) -C 14_utility_annotate setup
@$(MAKE) -C 15_memory setup
@$(MAKE) -C 16_debug setup
@$(MAKE) -C 17_levels setup
@$(MAKE) -C 18_multi_level setup
@$(MAKE) -C 19_story setup
@$(MAKE) -C 20_structure setup
@$(MAKE) -C 21_console setup
.PHONY: test
test:
@$(MAKE) -C 01_web_ui test
@$(MAKE) -C 03_tiles test
@$(MAKE) -C 04_load_map test
@$(MAKE) -C 05_actors test
@$(MAKE) -C 06_moving test
@$(MAKE) -C 07_collisions test
@$(MAKE) -C 08_layers test
@$(MAKE) -C 09_viewport_scroll test
@$(MAKE) -C 10_fov test
@$(MAKE) -C 11_sticky_light test
@$(MAKE) -C 12_energy test
@$(MAKE) -C 13_utility test
@$(MAKE) -C 14_utility_annotate test
@$(MAKE) -C 15_memory test
@$(MAKE) -C 16_debug test
@$(MAKE) -C 17_levels test
@$(MAKE) -C 18_multi_level test
@$(MAKE) -C 19_story test
@$(MAKE) -C 20_structure test
@$(MAKE) -C 21_console test
.PHONY: lint
lint:
@$(MAKE) -C 01_web_ui lint
@$(MAKE) -C 03_tiles lint
@$(MAKE) -C 04_load_map lint
@$(MAKE) -C 05_actors lint
@$(MAKE) -C 06_moving lint
@$(MAKE) -C 07_collisions lint
@$(MAKE) -C 08_layers lint
@$(MAKE) -C 09_viewport_scroll lint
@$(MAKE) -C 10_fov lint
@$(MAKE) -C 11_sticky_light lint
@$(MAKE) -C 12_energy lint
@$(MAKE) -C 13_utility lint
@$(MAKE) -C 14_utility_annotate lint
@$(MAKE) -C 15_memory lint
@$(MAKE) -C 16_debug lint
@$(MAKE) -C 17_levels lint
@$(MAKE) -C 18_multi_level lint
@$(MAKE) -C 19_story lint
@$(MAKE) -C 20_structure lint
# @$(MAKE) -C 21_console lint