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