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

Commit 2d50524a authored by Mike Lockwood's avatar Mike Lockwood
Browse files

main.mk: Allow overriding subdirs via make variable TARGET_SUBDIRS



Change-Id: I9e1523833e1567a59b19482c7834fe30479a009f
Signed-off-by: default avatarMike Lockwood <lockwood@android.com>
parent a09c24db
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -480,11 +480,16 @@ subdirs := \
	external/zlib
else	# !BUILD_TINY_ANDROID

ifneq ($(TARGET_SUBDIRS),)
subdirs := $(TARGET_SUBDIRS)
else
#
# Typical build; include any Android.mk files we can find.
#
subdirs := $(TOP)

endif	# !TARGET_SUBDIRS

FULL_BUILD := true

endif	# !BUILD_TINY_ANDROID