author | mark <mark> | 2002-02-05 07:39:40 (UTC) |
---|---|---|
committer | mark <mark> | 2002-02-05 07:39:40 (UTC) |
commit | 8c62e2906607c09f7465c54c26048fdf6f9dc212 (patch) (unidiff) | |
tree | c2a6eda9b045b7d377b7b69e150717de56572436 | |
parent | e77f345ca9812cec21e9df7f1fcec3f6110a66ff (diff) | |
download | opie-8c62e2906607c09f7465c54c26048fdf6f9dc212.zip opie-8c62e2906607c09f7465c54c26048fdf6f9dc212.tar.gz opie-8c62e2906607c09f7465c54c26048fdf6f9dc212.tar.bz2 |
Have jumpx configured with everything else
-rw-r--r-- | Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -1,59 +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 | taskbar/batteryapplet \ | 10 | taskbar/batteryapplet \ |
10 | taskbar/volumeapplet \ | 11 | taskbar/volumeapplet \ |
11 | taskbar/clockapplet \ | 12 | taskbar/clockapplet \ |
12 | taskbar/netmonapplet \ | 13 | taskbar/netmonapplet \ |
13 | netsetup/dialup \ | 14 | netsetup/dialup \ |
14 | netsetup/lan \ | 15 | netsetup/lan \ |
15 | mpegplayer/libmpeg3 \ | 16 | mpegplayer/libmpeg3 \ |
16 | mpegplayer/libmad \ | 17 | mpegplayer/libmad \ |
17 | mpegplayer/wavplugin \ | 18 | mpegplayer/wavplugin \ |
18 | cardmon | 19 | cardmon |
19 | 20 | ||
20 | APPS=$(LOCALAPPS) addressbook calculator clock datebook \ | 21 | APPS=$(LOCALAPPS) addressbook calculator clock datebook \ |
21 | filebrowser helpbrowser minesweep mpegplayer \ | 22 | filebrowser helpbrowser minesweep mpegplayer \ |
22 | settings/light-and-power \ | 23 | settings/light-and-power \ |
23 | settings/language \ | 24 | settings/language \ |
24 | settings/rotation \ | 25 | settings/rotation \ |
25 | settings/appearance \ | 26 | settings/appearance \ |
26 | settings/security \ | 27 | settings/security \ |
27 | settings/sound \ | 28 | settings/sound \ |
28 | settings/systemtime \ | 29 | settings/systemtime \ |
29 | solitaire spreadsheet tetrix textedit \ | 30 | solitaire spreadsheet tetrix textedit \ |
30 | todo tux wordgame embeddedkonsole taskbar sysinfo \ | 31 | todo tux wordgame embeddedkonsole taskbar sysinfo \ |
31 | parashoot snake citytime showimg netsetup \ | 32 | parashoot snake citytime showimg netsetup \ |
32 | qipkg mindbreaker go qasteroids qcop fifteen keypebble | 33 | qipkg mindbreaker go qasteroids qcop fifteen keypebble |
33 | 34 | ||
34 | single: mpegplayer/libmpeg3 | 35 | single: mpegplayer/libmpeg3 |
35 | 36 | ||
36 | dynamic: $(APPS) | 37 | dynamic: $(APPS) |
37 | 38 | ||
38 | $(COMPONENTS): $(LIBS) | 39 | $(COMPONENTS): $(LIBS) |
39 | 40 | ||
40 | $(APPS): $(LIBS) $(COMPONENTS) | 41 | $(APPS): $(LIBS) $(COMPONENTS) |
41 | 42 | ||
42 | $(LIBS) $(COMPONENTS) $(APPS) single: | 43 | $(LIBS) $(COMPONENTS) $(APPS) single: |
43 | $(MAKE) -C $@ -f Makefile | 44 | $(MAKE) -C $@ -f Makefile |
44 | 45 | ||
45 | showcomponents: | 46 | showcomponents: |
46 | @echo $(LIBS) $(APPS) $(COMPONENTS) single | 47 | @echo $(LIBS) $(APPS) $(COMPONENTS) single |
47 | 48 | ||
48 | clean: | 49 | clean: |
49 | $(MAKE) -C single -f Makefile $@ | 50 | $(MAKE) -C single -f Makefile $@ |
50 | 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 |
51 | 52 | ||
52 | lupdate: | 53 | lupdate: |
53 | 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 |
54 | 55 | ||
55 | lrelease: | 56 | lrelease: |
56 | 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 |
57 | 58 | ||
58 | 59 | ||
59 | .PHONY: default dynamic $(LIBS) $(APPS) $(COMPONENTS) single showcomponents clean | 60 | .PHONY: default dynamic $(LIBS) $(APPS) $(COMPONENTS) single showcomponents clean |