-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
52 lines (46 loc) · 1.89 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
#==============================================================================#
# #
# See full documentation in common.make #
# #
#==============================================================================#
SHELL := /bin/bash
.PHONY: all export clean
all: export
@for DIRSET in $$(find src/lib -name Makefile) \
$$(find src/apps -name Makefile) \
$$(find test -name Makefile); \
do \
DIR=$${DIRSET%/*}; \
$(MAKE) --directory=$$DIR; \
done;
export:
@for DIRSET in $$(find src/lib -name Makefile) \
$$(find src/apps -name Makefile) \
$$(find test -name Makefile); \
do \
DIR=$${DIRSET%/*}; \
$(MAKE) --directory=$$DIR export; \
done;
clean:
@echo
@echo " ------------------------------------------ "
@for DIRSET in $$(find src/lib -name Makefile) \
$$(find src/apps -name Makefile) \
$$(find test -name Makefile); \
do \
DIR=$${DIRSET%/*}; \
$(MAKE) -s --directory=$$DIR clean; \
done;
@rm -rf lib/
@rm -rf bin/
@rm -rf build/
@rm -rf include/
@rm -rf script/
@rm -f #*
@rm -f *~
@echo " : cleaned: environment : "
@echo " ------------------------------------------ "
@echo " : All Clean : "
@echo " ------------------------------------------ "
@echo
#==============================================================================#