From 0188414bc634798fa429be627cdb697daee68966 Mon Sep 17 00:00:00 2001 From: Ying Wang Date: Tue, 20 Jul 2010 16:18:16 -0700 Subject: add phony target "all_modules" and use it as make goal for "mm"/"mmm" So that mm/mmm don't depend on phony target "files", which brings in unwanted files for apps-only build. Also allow "dist" for mmm. Bug: http://b/issue?id=2811503 Change-Id: I2c0794aebd1d171d8a0f44eb8cda67855704d6bd --- core/main.mk | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'core') diff --git a/core/main.mk b/core/main.mk index 0b4ca38fd..11f234e57 100644 --- a/core/main.mk +++ b/core/main.mk @@ -282,7 +282,6 @@ ifneq ($(filter dalvik.gc.type-precise,$(PRODUCT_TAGS)),) ADDITIONAL_BUILD_PROPERTIES += dalvik.vm.dexopt-flags=m=y endif -ifeq (,$(TARGET_BUILD_APPS)) # Install an apns-conf.xml file if one's not already being installed. ifeq (,$(filter %:system/etc/apns-conf.xml, $(PRODUCT_COPY_FILES))) PRODUCT_COPY_FILES += \ @@ -303,7 +302,6 @@ ifneq ($(filter eng tests,$(TARGET_BUILD_VARIANT)),) endif endif endif -endif # !TARGET_BUILD_APPS ADDITIONAL_BUILD_PROPERTIES += net.bt.name=Android @@ -747,6 +745,10 @@ endif # TARGET_BUILD_APPS .PHONY: droid tests tests: droidcore +# phony target that include any targets in $(ALL_MODULES) +.PHONY: all_modules +all_modules: $(ALL_MODULES) + .PHONY: docs docs: $(ALL_DOCS) -- cgit v1.2.3