-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
66 lines (58 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
#export CXX = clang++
programs = libosmscout \
libosmscout-import \
libosmscout-map \
libosmscout-map-svg \
libosmscout-map-cairo \
libosmscout-map-agg \
libosmscout-map-qt \
libosmscout-map-agg \
libosmscout-map-opengl \
Import \
DumpData \
Demos \
OSMScout2 \
StyleEditor \
Tests
lol = libosmscout \
libosmscout-import \
libosmscout-map \
libosmscout-map-cairo
all:
@for x in $(programs); do \
if [ -d $$x ]; then \
(cd $$x && $(MAKE)); \
fi \
done
full:
@for x in $(programs); do \
if [ -d $$x ]; then \
echo Building $$x...; \
(cd $$x && ./autogen.sh && ./configure && $(MAKE)); \
fi \
done
full-install:
@for x in $(lol); do \
if [ -d $$x ]; then \
echo Building $$x...; \
(cd $$x && ./autogen.sh && ./configure && $(MAKE) && sudo $(MAKE) install); \
fi \
done
clean:
@for x in $(programs); do\
if [ -d $$x ]; then \
(cd $$x && $(MAKE) clean); \
fi \
done
dist:
@for x in $(programs); do\
if [ -d $$x ]; then \
(cd $$x && $(MAKE) dist); \
fi \
done
distclean:
@for x in $(programs); do\
if [ -d $$x ]; then \
(cd $$x && $(MAKE) distclean); \
fi \
done