-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathMakefile
105 lines (81 loc) · 2.27 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
97
98
99
100
101
102
103
104
105
SHELL := /bin/bash
LIB := lib/bap_wp
PLUGIN := plugin
SAMPLE_BINS := resources/sample_binaries
FMT_STR := "\u001b[31m%s\u001b[0m\n"
#####################################################
# DEFAULT
#####################################################
.DEFAULT_GOAL = all
.PHONY: all
all: install
#####################################################
# CLEAN
#####################################################
.PHONY: clean
clean:
@printf $(FMT_STR) "CLEANING LIB"
$(MAKE) -C $(LIB) clean
@printf $(FMT_STR) "CLEANING PLUGIN"
$(MAKE) -C $(PLUGIN) clean
#####################################################
# BUILD
#####################################################
.PHONY: build
build: build.lib build.plugin
.PHONY: build.lib
build.lib:
@printf $(FMT_STR) "BUILDING LIB"
$(MAKE) -C $(LIB) $*
.PHONY: build.plugin
build.plugin: build.lib install.lib
@printf $(FMT_STR) "BUILDING PLUGIN"
$(MAKE) -C $(PLUGIN) build
#####################################################
# INSTALL
#####################################################
.PHONY: install
install: uninstall.plugin install.plugin
.PHONY: uninstall
uninstall: uninstall.lib uninstall.plugin
.PHONY: uninstall.lib
uninstall.lib:
@printf $(FMT_STR) "UNINSTALLING LIB"
$(MAKE) -C $(LIB) uninstall
.PHONY: uninstall.plugin
uninstall.plugin:
@printf $(FMT_STR) "UNINSTALLING PLUGIN"
$(MAKE) -C $(PLUGIN) uninstall
.PHONY: reinstall
reinstall: uninstall install
.PHONY: install.plugin
install.plugin: install.lib
@printf $(FMT_STR) "INSTALLING PLUGIN"
$(MAKE) -C $(PLUGIN) $*
# lib must be installed BEFORE building plugin
.PHONY: install.lib
install.lib:
@printf $(FMT_STR) "INSTALLING LIB"
$(MAKE) -C $(LIB) install
#####################################################
# TEST
#####################################################
.PHONY: test
test: install test.lib test.plugin
.PHONY: test.lib
test.lib:
@printf $(FMT_STR) "TESTING LIB"
$(MAKE) -C $(LIB) test
.PHONY: test.plugin
test.plugin:
@printf $(FMT_STR) "TESTING PLUGIN"
$(MAKE) -C $(PLUGIN) test.unit
.PHONY: test.plugin.integration
test.plugin.integration: install
$(MAKE) -C $(PLUGIN) test.integration
#####################################################
# DOCS
#####################################################
.PHONY: doc
doc:
$(MAKE) -C $(LIB) $@