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

Commit fe1d3b12 authored by Keun young Park's avatar Keun young Park Committed by Android (Google) Code Review
Browse files

Merge "fix PDK build" into jb-mr1-dev

parents 7884dfc6 6530b38d
Loading
Loading
Loading
Loading
+10 −2
Original line number Diff line number Diff line
@@ -14,7 +14,15 @@
# limitations under the License.
#

ifeq (,$(TARGET_BUILD_APPS)$(filter true,$(TARGET_BUILD_PDK)))
ifeq (,$(TARGET_BUILD_APPS))

LOCAL_PATH := $(call my-dir)
include $(call first-makefiles-under,$(LOCAL_PATH))

ifeq ($(TARGET_BUILD_PDK),true)
include $(filter-out %/acp/Android.mk %/signapk/Android.mk %/zipalign/Android.mk,\
  $(call all-makefiles-under,$(LOCAL_PATH)))
else # !PDK
include $(call all-makefiles-under,$(LOCAL_PATH))
endif # PDK

endif