|
diff --git a/Makefile b/Makefile index 7c5197a..18b4b59 100644 --- a/ Makefile+++ b/ Makefile |
|
@@ -18,49 +18,50 @@ COMPONENTS=$(LOCALCOMPONENTS) inputmethods/keyboard \ |
18 | launcher/screenshotapplet \ |
18 | launcher/screenshotapplet \ |
19 | launcher/vmemo \ |
19 | launcher/vmemo \ |
20 | netsetup/dialup \ |
20 | netsetup/dialup \ |
21 | netsetup/lan \ |
21 | netsetup/lan \ |
22 | opiemail/ifaces/pop3 opiemail/ifaces/smtp \ |
22 | opiemail/ifaces/pop3 opiemail/ifaces/smtp \ |
23 | mpegplayer/libmpeg3 \ |
23 | mpegplayer/libmpeg3 \ |
24 | mpegplayer/libmad \ |
24 | mpegplayer/libmad \ |
25 | mpegplayer/wavplugin \ |
25 | mpegplayer/wavplugin \ |
26 | cardmon \ |
26 | cardmon \ |
27 | sdmon |
27 | sdmon |
28 | |
28 | |
29 | APPS=$(LOCALAPPS) core/addressbook calculator clock datebook \ |
29 | APPS=$(LOCALAPPS) core/addressbook calculator clock datebook \ |
30 | filebrowser helpbrowser minesweep mpegplayer \ |
30 | filebrowser helpbrowser minesweep mpegplayer \ |
31 | settings/light-and-power \ |
31 | settings/light-and-power \ |
32 | settings/language \ |
32 | settings/language \ |
33 | settings/rotation \ |
33 | settings/rotation \ |
34 | settings/appearance \ |
34 | settings/appearance \ |
35 | settings/security \ |
35 | settings/security \ |
36 | settings/sound \ |
36 | settings/sound \ |
37 | settings/systemtime \ |
37 | settings/systemtime \ |
38 | solitaire spreadsheet tetrix textedit \ |
38 | solitaire spreadsheet tetrix textedit \ |
39 | todo wordgame embeddedkonsole launcher sysinfo \ |
39 | todo wordgame embeddedkonsole launcher sysinfo \ |
40 | parashoot snake citytime showimg netsetup tableviewer \ |
40 | parashoot snake citytime showimg netsetup tableviewer \ |
41 | qipkg mindbreaker go qasteroids qcop fifteen keypebble today opiemail/converter opiemail \ |
41 | qipkg mindbreaker go qasteroids qcop fifteen keypebble today opiemail/converter opiemail \ |
42 | noncore/tictac noncore/opieftp noncore/drawpad noncore/kcheckers noncore/appskey noncore/qpdf |
42 | noncore/tictac noncore/opieftp noncore/drawpad noncore/kcheckers noncore/appskey noncore/qpdf \ |
| |
43 | noncore/kpacman |
43 | |
44 | |
44 | DOCS = docs/src/opie-policy |
45 | DOCS = docs/src/opie-policy |
45 | single: mpegplayer/libmpeg3 |
46 | single: mpegplayer/libmpeg3 |
46 | |
47 | |
47 | dynamic: $(APPS) |
48 | dynamic: $(APPS) |
48 | |
49 | |
49 | docs: $(DOCS) |
50 | docs: $(DOCS) |
50 | |
51 | |
51 | $(COMPONENTS): $(LIBS) |
52 | $(COMPONENTS): $(LIBS) |
52 | |
53 | |
53 | $(APPS): $(LIBS) $(COMPONENTS) |
54 | $(APPS): $(LIBS) $(COMPONENTS) |
54 | |
55 | |
55 | $(LIBS) $(COMPONENTS) $(APPS) $(DOCS) single: |
56 | $(LIBS) $(COMPONENTS) $(APPS) $(DOCS) single: |
56 | $(MAKE) -C $@ -f Makefile |
57 | $(MAKE) -C $@ -f Makefile |
57 | |
58 | |
58 | showcomponents: |
59 | showcomponents: |
59 | @echo $(LIBS) $(APPS) $(COMPONENTS) single |
60 | @echo $(LIBS) $(APPS) $(COMPONENTS) single |
60 | |
61 | |
61 | clean: |
62 | clean: |
62 | $(MAKE) -C single -f Makefile $@ |
63 | $(MAKE) -C single -f Makefile $@ |
63 | for dir in $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
64 | for dir in $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
64 | |
65 | |
65 | lupdate: |
66 | lupdate: |
66 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
67 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
|