-rw-r--r-- | Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -44,2 +44,4 @@ APPS=$(LOCALAPPS) core/addressbook calculator clock datebook \ +NONTMAKEAPPS := noncore/nethack + DOCS = docs/src/opie-policy @@ -47,3 +49,3 @@ single: mpegplayer/libmpeg3 -dynamic: $(APPS) +dynamic: $(APPS) $(NONTMAKEAPPS) @@ -53,5 +55,5 @@ $(COMPONENTS): $(LIBS) -$(APPS): $(LIBS) $(COMPONENTS) +$(NONTMAKEAPPS) $(APPS): $(LIBS) $(COMPONENTS) -$(LIBS) $(COMPONENTS) $(APPS) $(DOCS) single: +$(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS) single: $(MAKE) -C $@ -f Makefile @@ -63,3 +65,3 @@ clean: $(MAKE) -C single -f Makefile $@ - for dir in $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done + for dir in $(NONTMAKEAPPS) $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done @@ -72,2 +74,2 @@ lrelease: -.PHONY: default dynamic $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean +.PHONY: default dynamic $(NONTMAKEAPPS) $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean |