-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
83 lines (54 loc) · 1.31 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
.PHONY: all clean splay lowfat sleep rt-stat softbound example
all: splay lowfat sleep rt-stat softbound example
lto: splay-lto lowfat-lto softbound-lto
exports: lowfat-exports softbound-exports
clean: splay-clean lowfat-clean sleep-clean rt-stat-clean softbound-clean example-clean
format: splay-format lowfat-format sleep-format rt-stat-format softbound-format shared-format example-format
splay:
$(MAKE) -C splay
lowfat:
$(MAKE) -C lowfat
sleep:
$(MAKE) -C sleep
rt-stat:
$(MAKE) -C rt_stat
softbound:
$(MAKE) -C softbound
example:
$(MAKE) -C example
splay-lto:
$(MAKE) lto-static -C splay
lowfat-lto:
$(MAKE) lto-static -C lowfat
softbound-lto:
$(MAKE) lto-static -C softbound
lowfat-exports:
$(MAKE) exports -C lowfat
softbound-exports:
$(MAKE) exports -C softbound
splay-clean:
$(MAKE) clean -C splay
lowfat-clean:
$(MAKE) clean -C lowfat
sleep-clean:
$(MAKE) clean -C sleep
rt-stat-clean:
$(MAKE) clean -C rt_stat
softbound-clean:
$(MAKE) clean -C softbound
example-clean:
$(MAKE) clean -C example
splay-format:
$(MAKE) format -C splay
lowfat-format:
$(MAKE) format -C lowfat
sleep-format:
$(MAKE) format -C sleep
rt-stat-format:
$(MAKE) format -C rt_stat
softbound-format:
$(MAKE) format -C softbound
shared-format:
$(MAKE) format -C shared
example-format:
$(MAKE) format -C example