clover: Make Android.mk search recursive

Change-Id: I3a05344f949eae581f1f17cc33b1df475d3e6760
This commit is contained in:
Luca Stefani 2018-10-19 17:11:10 +02:00 committed by Max Weffers
parent 35102a6467
commit 72be253d70
No known key found for this signature in database
GPG key ID: 795F73D22FB93FAE

View file

@ -24,7 +24,8 @@
LOCAL_PATH := $(call my-dir) LOCAL_PATH := $(call my-dir)
ifeq ($(TARGET_DEVICE),clover) ifeq ($(TARGET_DEVICE),clover)
include $(call all-makefiles-under,$(LOCAL_PATH)) subdir_makefiles=$(call first-makefiles-under,$(LOCAL_PATH))
$(foreach mk,$(subdir_makefiles),$(info including $(mk) ...)$(eval include $(mk)))
include $(CLEAR_VARS) include $(CLEAR_VARS)
endif endif