summaryrefslogtreecommitdiff
Unidiff
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--Makefile12
1 files changed, 7 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 18b4b59..4fd0be7 100644
--- a/Makefile
+++ b/Makefile
@@ -39,35 +39,37 @@ APPS=$(LOCALAPPS) core/addressbook calculator clock datebook \
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
45NONTMAKEAPPS := noncore/nethack
46
45DOCS = docs/src/opie-policy 47DOCS = docs/src/opie-policy
46single: mpegplayer/libmpeg3 48single: mpegplayer/libmpeg3
47 49
48dynamic: $(APPS) 50dynamic: $(APPS) $(NONTMAKEAPPS)
49 51
50docs: $(DOCS) 52docs: $(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
59showcomponents: 61showcomponents:
60 @echo $(LIBS) $(APPS) $(COMPONENTS) single 62 @echo $(LIBS) $(APPS) $(COMPONENTS) single
61 63
62clean: 64clean:
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
66lupdate: 68lupdate:
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
69lrelease: 71lrelease:
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