-rw-r--r-- | Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -108,9 +108,8 @@ APPS=$(LOCALAPPS) $(PIMAPPS) $(COREAPPS) \ NONTMAKEAPPS := ipaq/opiealarm DOCS = docs/src/opie-policy -single: mpegplayer/libmpeg3 dynamic: $(APPS) $(NONTMAKEAPPS) docs: $(DOCS) @@ -118,16 +117,15 @@ docs: $(DOCS) $(COMPONENTS): $(LIBS) $(NONTMAKEAPPS) $(APPS): $(LIBS) $(COMPONENTS) -$(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS) single: +$(LIBS) $(COMPONENTS) $(NONTMAKEAPPS) $(APPS) $(DOCS): $(MAKE) -C $@ -f Makefile showcomponents: - @echo $(LIBS) $(APPS) $(COMPONENTS) single + @echo $(LIBS) $(APPS) $(COMPONENTS) clean: - $(MAKE) -C single -f Makefile $@ for dir in $(NONTMAKEAPPS) $(APPS) $(LIBS) $(COMPONENTS) $(DOCS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done lupdate: for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done @@ -135,5 +133,5 @@ lupdate: lrelease: for dir in $(APPS) $(LIBS) $(COMPONENTS); do $(MAKE) -C $$dir -f Makefile $@ || exit 1; done -.PHONY: default dynamic $(NONTMAKEAPPS) $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) single showcomponents clean +.PHONY: default dynamic $(NONTMAKEAPPS) $(LIBS) $(APPS) $(COMPONENTS) $(DOCS) showcomponents clean |