summaryrefslogtreecommitdiff
path: root/Makefile
Unidiff
Diffstat (limited to 'Makefile') (more/less context) (ignore whitespace changes)
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index db3fc6d..580203a 100644
--- a/Makefile
+++ b/Makefile
@@ -1,76 +1,75 @@
1default: dynamic 1default: dynamic
2 2
3all: default docs 3all: default docs
4 4
5LIBS=library libopie 5LIBS=library libopie
6 6
7COMPONENTS=$(LOCALCOMPONENTS) inputmethods/keyboard \ 7COMPONENTS=$(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 inputmethods/dvorak \ 12 inputmethods/dvorak \
13 launcher/batteryapplet \ 13 launcher/batteryapplet \
14 launcher/irdaapplet \ 14 launcher/irdaapplet \
15 launcher/volumeapplet \ 15 launcher/volumeapplet \
16 launcher/clockapplet \ 16 launcher/clockapplet \
17 launcher/netmonapplet \ 17 launcher/netmonapplet \
18 launcher/screenshotapplet \ 18 launcher/screenshotapplet \
19 launcher/clipboardapplet \ 19 launcher/clipboardapplet \
20 launcher/cardmon \
20 launcher/vmemo \ 21 launcher/vmemo \
21 netsetup/dialup \ 22 netsetup/dialup \
22 netsetup/lan \ 23 netsetup/lan \
23 opiemail/ifaces/pop3 opiemail/ifaces/smtp \ 24 opiemail/ifaces/pop3 opiemail/ifaces/smtp \
24 core/opieplayer/libmpeg3 \ 25 core/opieplayer/libmpeg3 \
25 core/opieplayer/libmad \ 26 core/opieplayer/libmad \
26 core/opieplayer/wavplugin \ 27 core/opieplayer/wavplugin \
27 cardmon \
28 sdmon
29 28
30APPS=$(LOCALAPPS) core/addressbook calculator clock datebook \ 29APPS=$(LOCALAPPS) core/addressbook calculator clock datebook \
31 filebrowser helpbrowser minesweep core/opieplayer \ 30 filebrowser helpbrowser minesweep core/opieplayer \
32 settings/light-and-power \ 31 settings/light-and-power \
33 settings/language \ 32 settings/language \
34 settings/rotation \ 33 settings/rotation \
35 settings/appearance \ 34 settings/appearance \
36 settings/security \ 35 settings/security \
37 settings/sound \ 36 settings/sound \
38 settings/systemtime \ 37 settings/systemtime \
39 settings/mediummount \ 38 settings/mediummount \
40 settings/tabmanager \ 39 settings/tabmanager \
41 solitaire spreadsheet tetrix textedit \ 40 solitaire spreadsheet tetrix textedit \
42 todo wordgame embeddedkonsole launcher sysinfo \ 41 todo wordgame embeddedkonsole launcher sysinfo \
43 parashoot snake citytime showimg netsetup core/wlansetup tableviewer \ 42 parashoot snake citytime showimg netsetup core/wlansetup tableviewer \
44 core/oipkg mindbreaker go qasteroids qcop fifteen keypebble today opiemail/converter opiemail \ 43 core/oipkg mindbreaker go qasteroids qcop fifteen keypebble today opiemail/converter opiemail \
45 noncore/tictac noncore/opieftp noncore/drawpad noncore/kcheckers noncore/appskey noncore/qpdf \ 44 noncore/tictac noncore/opieftp noncore/drawpad noncore/kcheckers noncore/appskey noncore/qpdf \
46 noncore/kpacman noncore/advancedfm noncore/kbill noncore/remote noncore/opie-sh 45 noncore/kpacman noncore/advancedfm noncore/kbill noncore/remote noncore/opie-sh
47 46
48NONTMAKEAPPS := noncore/nethack 47NONTMAKEAPPS := noncore/nethack
49 48
50DOCS = docs/src/opie-policy 49DOCS = docs/src/opie-policy
51single: mpegplayer/libmpeg3 50single: mpegplayer/libmpeg3
52 51
53dynamic: $(APPS) $(NONTMAKEAPPS) 52dynamic: $(APPS) $(NONTMAKEAPPS)
54 53
55docs: $(DOCS) 54docs: $(DOCS)
56 55
57$(COMPONENTS): $(LIBS) 56$(COMPONENTS): $(LIBS)
58 57
59$(NONTMAKEAPPS) $(APPS): $(LIBS) $(COMPONENTS) 58$(NONTMAKEAPPS) $(APPS): $(LIBS) $(COMPONENTS)
60 59
61$(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS) single: 60$(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS) single:
62 $(MAKE) -C $@ -f Makefile 61 $(MAKE) -C $@ -f Makefile
63 62
64showcomponents: 63showcomponents:
65 @echo $(LIBS) $(APPS) $(COMPONENTS) single 64 @echo $(LIBS) $(APPS) $(COMPONENTS) single
66 65
67clean: 66clean:
68 $(MAKE) -C single -f Makefile $@ 67 $(MAKE) -C single -f Makefile $@
69 for dir in $(NONTMAKEAPPS) $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done 68 for dir in $(NONTMAKEAPPS) $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done
70 69
71lupdate: 70lupdate:
72 for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done 71 for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done
73 72
74lrelease: 73lrelease:
75 for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done 74 for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done
76 75