Skip to content

Commit

Permalink
Add phony target dist_libraries
Browse files Browse the repository at this point in the history
that is only used to put your library into the dist dir when doing a full build.

Change-Id: I11e9dc15237086843ea4a00736c81ffc680ca12e
  • Loading branch information
Ying Wang committed Jul 7, 2010
1 parent 783f449 commit 8d9cbe5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion core/main.mk
Expand Up @@ -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.

Expand Down Expand Up @@ -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

Expand Down

0 comments on commit 8d9cbe5

Please sign in to comment.