|
diff --git a/Makefile b/Makefile index 3b91fb1..9b94717 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -1,63 +1,64 @@ |
1 | default: dynamic |
1 | default: dynamic |
2 | |
2 | |
3 | all: default docs |
3 | all: default docs |
4 | |
4 | |
5 | LIBS=library |
5 | LIBS=library |
6 | |
6 | |
7 | COMPONENTS=$(LOCALCOMPONENTS) inputmethods/keyboard \ |
7 | COMPONENTS=$(LOCALCOMPONENTS) inputmethods/keyboard \ |
8 | inputmethods/pickboard \ |
8 | inputmethods/pickboard \ |
9 | inputmethods/handwriting \ |
9 | inputmethods/handwriting \ |
10 | inputmethods/unikeyboard \ |
10 | inputmethods/unikeyboard \ |
11 | inputmethods/jumpx \ |
11 | inputmethods/jumpx \ |
12 | taskbar/batteryapplet \ |
12 | taskbar/batteryapplet \ |
13 | taskbar/volumeapplet \ |
13 | taskbar/volumeapplet \ |
14 | taskbar/clockapplet \ |
14 | taskbar/clockapplet \ |
15 | taskbar/netmonapplet \ |
15 | taskbar/netmonapplet \ |
| |
16 | taskbar/screenshotapplet \ |
16 | netsetup/dialup \ |
17 | netsetup/dialup \ |
17 | netsetup/lan \ |
18 | netsetup/lan \ |
18 | mpegplayer/libmpeg3 \ |
19 | mpegplayer/libmpeg3 \ |
19 | mpegplayer/libmad \ |
20 | mpegplayer/libmad \ |
20 | mpegplayer/wavplugin \ |
21 | mpegplayer/wavplugin \ |
21 | cardmon \ |
22 | cardmon \ |
22 | sdmon opiemail/ifaces/pop3 |
23 | sdmon opiemail/ifaces/pop3 |
23 | |
24 | |
24 | APPS=$(LOCALAPPS) addressbook calculator clock datebook \ |
25 | APPS=$(LOCALAPPS) addressbook calculator clock datebook \ |
25 | filebrowser helpbrowser minesweep mpegplayer \ |
26 | filebrowser helpbrowser minesweep mpegplayer \ |
26 | settings/light-and-power \ |
27 | settings/light-and-power \ |
27 | settings/language \ |
28 | settings/language \ |
28 | settings/rotation \ |
29 | settings/rotation \ |
29 | settings/appearance \ |
30 | settings/appearance \ |
30 | settings/security \ |
31 | settings/security \ |
31 | settings/sound \ |
32 | settings/sound \ |
32 | settings/systemtime \ |
33 | settings/systemtime \ |
33 | solitaire spreadsheet tetrix textedit \ |
34 | solitaire spreadsheet tetrix textedit \ |
34 | todo tux wordgame embeddedkonsole taskbar sysinfo \ |
35 | todo tux wordgame embeddedkonsole taskbar sysinfo \ |
35 | parashoot snake citytime showimg netsetup \ |
36 | parashoot snake citytime showimg netsetup \ |
36 | qipkg mindbreaker go qasteroids qcop fifteen keypebble opiemail/converter opiemail today |
37 | qipkg mindbreaker go qasteroids qcop fifteen keypebble opiemail/converter opiemail today |
37 | |
38 | |
38 | DOCS = docs/src/opie-policy |
39 | DOCS = docs/src/opie-policy |
39 | single: mpegplayer/libmpeg3 |
40 | single: mpegplayer/libmpeg3 |
40 | |
41 | |
41 | dynamic: $(APPS) |
42 | dynamic: $(APPS) |
42 | |
43 | |
43 | docs: $(DOCS) |
44 | docs: $(DOCS) |
44 | |
45 | |
45 | $(COMPONENTS): $(LIBS) |
46 | $(COMPONENTS): $(LIBS) |
46 | |
47 | |
47 | $(APPS): $(LIBS) $(COMPONENTS) |
48 | $(APPS): $(LIBS) $(COMPONENTS) |
48 | |
49 | |
49 | $(LIBS) $(COMPONENTS) $(APPS) $(DOCS) single: |
50 | $(LIBS) $(COMPONENTS) $(APPS) $(DOCS) single: |
50 | $(MAKE) -C $@ -f Makefile |
51 | $(MAKE) -C $@ -f Makefile |
51 | |
52 | |
52 | showcomponents: |
53 | showcomponents: |
53 | @echo $(LIBS) $(APPS) $(COMPONENTS) single |
54 | @echo $(LIBS) $(APPS) $(COMPONENTS) single |
54 | |
55 | |
55 | clean: |
56 | clean: |
56 | $(MAKE) -C single -f Makefile $@ |
57 | $(MAKE) -C single -f Makefile $@ |
57 | for dir in $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
58 | for dir in $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
58 | |
59 | |
59 | lupdate: |
60 | lupdate: |
60 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
61 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
61 | |
62 | |
62 | lrelease: |
63 | lrelease: |
63 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
64 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
|