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

Commit 78237e4d authored by Ying Wang's avatar Ying Wang Committed by Steve Kondik
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 6c46aa2e
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -684,6 +684,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.

@@ -731,7 +734,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