1# TODO: Find a better way to separate build configs for ADP vs non-ADP devices 2ifneq ($(TARGET_BOARD_AUTO),true) 3 ifneq ($(filter msm8084 msm8x84,$(TARGET_BOARD_PLATFORM)),) 4 #This is for 8084 based platforms 5 include $(call all-named-subdir-makefiles,msm8084) 6 else 7 ifneq ($(filter msm8226 msm8x26,$(TARGET_BOARD_PLATFORM)),) 8 include $(call all-named-subdir-makefiles,msm8226) 9 else 10 ifneq ($(filter msm8960,$(TARGET_BOARD_PLATFORM)),) 11 include $(call all-named-subdir-makefiles,msm8960) 12 else 13 ifneq ($(filter msm8994 msm8992,$(TARGET_BOARD_PLATFORM)),) 14 include $(call all-named-subdir-makefiles,msm8994) 15 else 16 ifneq ($(filter msm8909,$(TARGET_BOARD_PLATFORM)),) 17 include $(call all-named-subdir-makefiles,msm8909) 18 else 19 ifneq ($(filter msm8996,$(TARGET_BOARD_PLATFORM)),) 20 include $(call all-named-subdir-makefiles,msm8996) 21 endif 22 endif 23 endif 24 endif 25 endif 26 endif 27endif 28