author | zecke <zecke> | 2002-02-17 12:14:34 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-02-17 12:14:34 (UTC) |
commit | 0f454a59bab0cf9d41e8d778f37c56e9a8a13e72 (patch) (unidiff) | |
tree | 155fe2ecd0be6745eff0ac4df83798bbcaa744de | |
parent | da2ac5f055b7f3ac6d27e9f438798c5c79ba5afd (diff) | |
download | opie-0f454a59bab0cf9d41e8d778f37c56e9a8a13e72.zip opie-0f454a59bab0cf9d41e8d778f37c56e9a8a13e72.tar.gz opie-0f454a59bab0cf9d41e8d778f37c56e9a8a13e72.tar.bz2 |
adds pop3 plugin to components
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,66 +1,66 @@ | |||
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 | netsetup/dialup \ | 16 | netsetup/dialup \ |
17 | netsetup/lan \ | 17 | netsetup/lan \ |
18 | mpegplayer/libmpeg3 \ | 18 | mpegplayer/libmpeg3 \ |
19 | mpegplayer/libmad \ | 19 | mpegplayer/libmad \ |
20 | mpegplayer/wavplugin \ | 20 | mpegplayer/wavplugin \ |
21 | cardmon \ | 21 | cardmon \ |
22 | sdmon | 22 | sdmon opiemail/ifaces/pop3 |
23 | 23 | ||
24 | APPS=$(LOCALAPPS) addressbook calculator clock datebook \ | 24 | APPS=$(LOCALAPPS) addressbook calculator clock datebook \ |
25 | filebrowser helpbrowser minesweep mpegplayer \ | 25 | filebrowser helpbrowser minesweep mpegplayer \ |
26 | settings/light-and-power \ | 26 | settings/light-and-power \ |
27 | settings/language \ | 27 | settings/language \ |
28 | settings/rotation \ | 28 | settings/rotation \ |
29 | settings/appearance \ | 29 | settings/appearance \ |
30 | settings/security \ | 30 | settings/security \ |
31 | settings/sound \ | 31 | settings/sound \ |
32 | settings/systemtime \ | 32 | settings/systemtime \ |
33 | solitaire spreadsheet tetrix textedit \ | 33 | solitaire spreadsheet tetrix textedit \ |
34 | todo tux wordgame embeddedkonsole taskbar sysinfo \ | 34 | todo tux wordgame embeddedkonsole taskbar sysinfo \ |
35 | parashoot snake citytime showimg netsetup \ | 35 | parashoot snake citytime showimg netsetup \ |
36 | qipkg mindbreaker go qasteroids qcop fifteen keypebble opiemail/converter opiemail today | 36 | qipkg mindbreaker go qasteroids qcop fifteen keypebble opiemail/converter opiemail today |
37 | 37 | ||
38 | DOCS = docs/src/opie-policy | 38 | DOCS = docs/src/opie-policy |
39 | single: mpegplayer/libmpeg3 | 39 | single: mpegplayer/libmpeg3 |
40 | 40 | ||
41 | dynamic: $(APPS) | 41 | dynamic: $(APPS) |
42 | 42 | ||
43 | docs: $(DOCS) | 43 | docs: $(DOCS) |
44 | 44 | ||
45 | $(COMPONENTS): $(LIBS) | 45 | $(COMPONENTS): $(LIBS) |
46 | 46 | ||
47 | $(APPS): $(LIBS) $(COMPONENTS) | 47 | $(APPS): $(LIBS) $(COMPONENTS) |
48 | 48 | ||
49 | $(LIBS) $(COMPONENTS) $(APPS) $(DOCS) single: | 49 | $(LIBS) $(COMPONENTS) $(APPS) $(DOCS) single: |
50 | $(MAKE) -C $@ -f Makefile | 50 | $(MAKE) -C $@ -f Makefile |
51 | 51 | ||
52 | showcomponents: | 52 | showcomponents: |
53 | @echo $(LIBS) $(APPS) $(COMPONENTS) single | 53 | @echo $(LIBS) $(APPS) $(COMPONENTS) single |
54 | 54 | ||
55 | clean: | 55 | clean: |
56 | $(MAKE) -C single -f Makefile $@ | 56 | $(MAKE) -C single -f Makefile $@ |
57 | for dir in $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done | 57 | for dir in $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
58 | 58 | ||
59 | lupdate: | 59 | lupdate: |
60 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done | 60 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
61 | 61 | ||
62 | lrelease: | 62 | lrelease: |
63 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done | 63 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
64 | 64 | ||
65 | 65 | ||
66 | .PHONY: default dynamic $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean | 66 | .PHONY: default dynamic $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean |