Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8d9cbe55 authored by Ying Wang's avatar Ying Wang
Browse files

Add phony target dist_libraries

that is only used to put your library into the dist dir when doing a full build.

Change-Id: I11e9dc15237086843ea4a00736c81ffc680ca12e
parent 783f449b
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -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