author | zecke <zecke> | 2002-02-06 02:47:34 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-02-06 02:47:34 (UTC) |
commit | f9c1ae9958d40885657a5a974c944cc2ccddbea4 (patch) (unidiff) | |
tree | ecfb44f994ae56c39910c2806f013d70e669ac81 | |
parent | 4d7267303fe29d883ed5c38e804046c7bfec6c9a (diff) | |
download | opie-f9c1ae9958d40885657a5a974c944cc2ccddbea4.zip opie-f9c1ae9958d40885657a5a974c944cc2ccddbea4.tar.gz opie-f9c1ae9958d40885657a5a974c944cc2ccddbea4.tar.bz2 |
Check in of opieMail a MailClient
OMail is not ready for primetype yet but I want others
to have a chanche to see what is allready there and will be needed
for the creation a full blown PDA MailClient
Currently it relies on that somebody parsed MBoxes put up a log
and installs it somewhere. This will change pretty soon.
Allowing reading MBox itself, pop3, smtp and maybe even imap
Please check out README and TODO in opiemail/
there's no .desktop file on purpose. Don't let users play was an
unifnished app.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,60 +1,60 @@ | |||
1 | default: dynamic | 1 | default: dynamic |
2 | 2 | ||
3 | LIBS=library | 3 | LIBS=library |
4 | 4 | ||
5 | COMPONENTS=$(LOCALCOMPONENTS) inputmethods/keyboard \ | 5 | COMPONENTS=$(LOCALCOMPONENTS) inputmethods/keyboard \ |
6 | inputmethods/pickboard \ | 6 | inputmethods/pickboard \ |
7 | inputmethods/handwriting \ | 7 | inputmethods/handwriting \ |
8 | inputmethods/unikeyboard \ | 8 | inputmethods/unikeyboard \ |
9 | inputmethods/jumpx \ | 9 | inputmethods/jumpx \ |
10 | taskbar/batteryapplet \ | 10 | taskbar/batteryapplet \ |
11 | taskbar/volumeapplet \ | 11 | taskbar/volumeapplet \ |
12 | taskbar/clockapplet \ | 12 | taskbar/clockapplet \ |
13 | taskbar/netmonapplet \ | 13 | taskbar/netmonapplet \ |
14 | netsetup/dialup \ | 14 | netsetup/dialup \ |
15 | netsetup/lan \ | 15 | netsetup/lan \ |
16 | mpegplayer/libmpeg3 \ | 16 | mpegplayer/libmpeg3 \ |
17 | mpegplayer/libmad \ | 17 | mpegplayer/libmad \ |
18 | mpegplayer/wavplugin \ | 18 | mpegplayer/wavplugin \ |
19 | cardmon | 19 | cardmon |
20 | 20 | ||
21 | APPS=$(LOCALAPPS) addressbook calculator clock datebook \ | 21 | APPS=$(LOCALAPPS) addressbook calculator clock datebook \ |
22 | filebrowser helpbrowser minesweep mpegplayer \ | 22 | filebrowser helpbrowser minesweep mpegplayer \ |
23 | settings/light-and-power \ | 23 | settings/light-and-power \ |
24 | settings/language \ | 24 | settings/language \ |
25 | settings/rotation \ | 25 | settings/rotation \ |
26 | settings/appearance \ | 26 | settings/appearance \ |
27 | settings/security \ | 27 | settings/security \ |
28 | settings/sound \ | 28 | settings/sound \ |
29 | settings/systemtime \ | 29 | settings/systemtime \ |
30 | solitaire spreadsheet tetrix textedit \ | 30 | solitaire spreadsheet tetrix textedit \ |
31 | todo tux wordgame embeddedkonsole taskbar sysinfo \ | 31 | todo tux wordgame embeddedkonsole taskbar sysinfo \ |
32 | parashoot snake citytime showimg netsetup \ | 32 | parashoot snake citytime showimg netsetup \ |
33 | qipkg mindbreaker go qasteroids qcop fifteen keypebble | 33 | qipkg mindbreaker go qasteroids qcop fifteen keypebble opiemail/lib opiemail |
34 | 34 | ||
35 | single: mpegplayer/libmpeg3 | 35 | single: mpegplayer/libmpeg3 |
36 | 36 | ||
37 | dynamic: $(APPS) | 37 | dynamic: $(APPS) |
38 | 38 | ||
39 | $(COMPONENTS): $(LIBS) | 39 | $(COMPONENTS): $(LIBS) |
40 | 40 | ||
41 | $(APPS): $(LIBS) $(COMPONENTS) | 41 | $(APPS): $(LIBS) $(COMPONENTS) |
42 | 42 | ||
43 | $(LIBS) $(COMPONENTS) $(APPS) single: | 43 | $(LIBS) $(COMPONENTS) $(APPS) single: |
44 | $(MAKE) -C $@ -f Makefile | 44 | $(MAKE) -C $@ -f Makefile |
45 | 45 | ||
46 | showcomponents: | 46 | showcomponents: |
47 | @echo $(LIBS) $(APPS) $(COMPONENTS) single | 47 | @echo $(LIBS) $(APPS) $(COMPONENTS) single |
48 | 48 | ||
49 | clean: | 49 | clean: |
50 | $(MAKE) -C single -f Makefile $@ | 50 | $(MAKE) -C single -f Makefile $@ |
51 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done | 51 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
52 | 52 | ||
53 | lupdate: | 53 | lupdate: |
54 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done | 54 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
55 | 55 | ||
56 | lrelease: | 56 | lrelease: |
57 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done | 57 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
58 | 58 | ||
59 | 59 | ||
60 | .PHONY: default dynamic $(LIBS) $(APPS) $(COMPONENTS) single showcomponents clean | 60 | .PHONY: default dynamic $(LIBS) $(APPS) $(COMPONENTS) single showcomponents clean |