author | dwmw2 <dwmw2> | 2002-04-16 00:38:48 (UTC) |
---|---|---|
committer | dwmw2 <dwmw2> | 2002-04-16 00:38:48 (UTC) |
commit | dd762e765310eb8c721c210b10239c9dd14eb4ef (patch) (unidiff) | |
tree | 90b57ef46e8dfd1feabcfb384306828b08b5e6de | |
parent | d4def4829c4d5734c78f2f732eaf4bf752bec9c7 (diff) | |
download | opie-dd762e765310eb8c721c210b10239c9dd14eb4ef.zip opie-dd762e765310eb8c721c210b10239c9dd14eb4ef.tar.gz opie-dd762e765310eb8c721c210b10239c9dd14eb4ef.tar.bz2 |
add nethack
-rw-r--r-- | Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -29,45 +29,47 @@ COMPONENTS=$(LOCALCOMPONENTS) inputmethods/keyboard \ | |||
29 | APPS=$(LOCALAPPS) core/addressbook calculator clock datebook \ | 29 | APPS=$(LOCALAPPS) core/addressbook calculator clock datebook \ |
30 | filebrowser helpbrowser minesweep mpegplayer \ | 30 | filebrowser helpbrowser minesweep mpegplayer \ |
31 | settings/light-and-power \ | 31 | settings/light-and-power \ |
32 | settings/language \ | 32 | settings/language \ |
33 | settings/rotation \ | 33 | settings/rotation \ |
34 | settings/appearance \ | 34 | settings/appearance \ |
35 | settings/security \ | 35 | settings/security \ |
36 | settings/sound \ | 36 | settings/sound \ |
37 | settings/systemtime \ | 37 | settings/systemtime \ |
38 | solitaire spreadsheet tetrix textedit \ | 38 | solitaire spreadsheet tetrix textedit \ |
39 | todo wordgame embeddedkonsole launcher sysinfo \ | 39 | todo wordgame embeddedkonsole launcher sysinfo \ |
40 | parashoot snake citytime showimg netsetup tableviewer \ | 40 | parashoot snake citytime showimg netsetup tableviewer \ |
41 | qipkg mindbreaker go qasteroids qcop fifteen keypebble today opiemail/converter opiemail \ | 41 | qipkg mindbreaker go qasteroids qcop fifteen keypebble today opiemail/converter opiemail \ |
42 | noncore/tictac noncore/opieftp noncore/drawpad noncore/kcheckers noncore/appskey noncore/qpdf \ | 42 | noncore/tictac noncore/opieftp noncore/drawpad noncore/kcheckers noncore/appskey noncore/qpdf \ |
43 | noncore/kpacman | 43 | noncore/kpacman |
44 | 44 | ||
45 | NONTMAKEAPPS := noncore/nethack | ||
46 | |||
45 | DOCS = docs/src/opie-policy | 47 | DOCS = docs/src/opie-policy |
46 | single: mpegplayer/libmpeg3 | 48 | single: mpegplayer/libmpeg3 |
47 | 49 | ||
48 | dynamic: $(APPS) | 50 | dynamic: $(APPS) $(NONTMAKEAPPS) |
49 | 51 | ||
50 | docs: $(DOCS) | 52 | docs: $(DOCS) |
51 | 53 | ||
52 | $(COMPONENTS): $(LIBS) | 54 | $(COMPONENTS): $(LIBS) |
53 | 55 | ||
54 | $(APPS): $(LIBS) $(COMPONENTS) | 56 | $(NONTMAKEAPPS) $(APPS): $(LIBS) $(COMPONENTS) |
55 | 57 | ||
56 | $(LIBS) $(COMPONENTS) $(APPS) $(DOCS) single: | 58 | $(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS) single: |
57 | $(MAKE) -C $@ -f Makefile | 59 | $(MAKE) -C $@ -f Makefile |
58 | 60 | ||
59 | showcomponents: | 61 | showcomponents: |
60 | @echo $(LIBS) $(APPS) $(COMPONENTS) single | 62 | @echo $(LIBS) $(APPS) $(COMPONENTS) single |
61 | 63 | ||
62 | clean: | 64 | clean: |
63 | $(MAKE) -C single -f Makefile $@ | 65 | $(MAKE) -C single -f Makefile $@ |
64 | for dir in $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done | 66 | for dir in $(NONTMAKEAPPS) $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
65 | 67 | ||
66 | lupdate: | 68 | lupdate: |
67 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done | 69 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
68 | 70 | ||
69 | lrelease: | 71 | lrelease: |
70 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done | 72 | for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done |
71 | 73 | ||
72 | 74 | ||
73 | .PHONY: default dynamic $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean | 75 | .PHONY: default dynamic $(NONTMAKEAPPS) $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean |