-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
60 lines (50 loc) · 824 Bytes
/
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
DESTDIR ?= /
TOOLS = gtkclocksetup \
gtkhostsetup \
gtkiconrefresh \
gtkkeyboardsetup \
gtklocalesetup \
gtkreposetup \
gtkservicesetup \
gtkusersetup
export DESTDIR
.PHONY: all
all:
for i in $(TOOLS); do \
$(MAKE) -C $$i;\
done
.PHONY: install
install:
for i in $(TOOLS); do \
$(MAKE) install -C $$i; \
done
.PHONY: clean
clean:
for i in $(TOOLS); do \
$(MAKE) clean -C $$i;\
done
.PHONY: pot
pot:
for i in $(TOOLS); do \
$(MAKE) pot -C $$i;\
done
.PHONY: update-po
update-po:
for i in $(TOOLS); do \
$(MAKE) update-po -C $$i;\
done
.PHONY: tx-pull
tx-pull:
for i in $(TOOLS); do \
$(MAKE) tx-pull -C $$i;\
done
.PHONY: tx-pull-f
tx-pull-f:
for i in $(TOOLS); do \
$(MAKE) tx-pull-f -C $$i;\
done
.PHONY: stat
stat:
for i in $(TOOLS); do \
$(MAKE) stat -C $$i;\
done