Merge "Add phony target dist_libraries" into froyo

This commit is contained in:
Ying Wang
2010-07-13 18:50:05 -07:00
committed by Android (Google) Code Review

View File

@@ -689,6 +689,9 @@ droidcore: files \
$(INSTALLED_USERDATAIMAGE_TARGET) \ $(INSTALLED_USERDATAIMAGE_TARGET) \
$(INSTALLED_FILES_FILE) $(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),) ifneq ($(TARGET_BUILD_APPS),)
# If this build is just for apps, only build apps and not the full system by default. # 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 endif
# Building a full system-- the default is to build droidcore # Building a full system-- the default is to build droidcore
droid: droidcore droid: droidcore dist_libraries
endif # TARGET_BUILD_APPS endif # TARGET_BUILD_APPS