aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2010-07-13 18:50:05 -0700
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-07-13 18:50:05 -0700
commita6bed2f723cce6e684102890b4e6cb224412a1ce (patch)
treeededdd0b86c41a0c500cebbd47cf722f86c34fe1
parentb6a1c1802961f40fe4736e80402f849968cd2563 (diff)
parent8d9cbe557d352a2af6750500f3feb57b13cd9742 (diff)
downloadbuild-a6bed2f723cce6e684102890b4e6cb224412a1ce.tar.gz
Merge "Add phony target dist_libraries" into froyo
-rw-r--r--core/main.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/core/main.mk b/core/main.mk
index 32d67e9b65..0b4ca38fd5 100644
--- a/core/main.mk
+++ b/core/main.mk
@@ -689,6 +689,9 @@ droidcore: files \
$(INSTALLED_USERDATAIMAGE_TARGET) \
$(INSTALLED_FILES_FILE)
+# dist_libraries only for putting your library into the dist directory with a full build.
+.PHONY: dist_libraries
+
ifneq ($(TARGET_BUILD_APPS),)
# If this build is just for apps, only build apps and not the full system by default.
@@ -736,7 +739,7 @@ else # TARGET_BUILD_APPS
endif
# Building a full system-- the default is to build droidcore
-droid: droidcore
+droid: droidcore dist_libraries
endif # TARGET_BUILD_APPS