1LOCAL_PATH := $(call my-dir) 2# TODO: Find a better way to separate build configs for ADP vs non-ADP devices 3ifneq ($(TARGET_BOARD_AUTO),true) 4 5ifneq ($(filter msm8x84,$(TARGET_BOARD_PLATFORM)),) 6 include $(call all-named-subdir-makefiles,msm8084) 7else ifneq ($(filter msm8x26,$(TARGET_BOARD_PLATFORM)),) 8 include $(call all-named-subdir-makefiles,msm8226) 9else ifneq ($(filter msm8992,$(TARGET_BOARD_PLATFORM)),) 10 include $(call all-named-subdir-makefiles,msm8994) 11else ifneq ($(filter msm8909,$(TARGET_BOARD_PLATFORM)),) 12 ifeq ($(TARGET_SUPPORTS_QCOM_3100),true) 13 include $(call all-named-subdir-makefiles,msm8909w_3100) 14 else 15 include $(call all-named-subdir-makefiles,msm8909) 16 endif 17else ifneq ($(wildcard $(LOCAL_PATH)/$(TARGET_BOARD_PLATFORM)),) 18 include $(call all-named-subdir-makefiles,$(TARGET_BOARD_PLATFORM)) 19endif 20 21endif 22