1# TODO: Find a better way to separate build configs for ADP vs non-ADP devices 2ifneq ($(BOARD_IS_AUTOMOTIVE),true) 3 ifneq ($(filter msm8960 msm8x27 msm8226,$(TARGET_BOARD_PLATFORM)),) 4 include $(call all-named-subdir-makefiles,msm8960) 5 else 6 ifneq ($(filter msm8994 msm8992,$(TARGET_BOARD_PLATFORM)),) 7 include $(call all-named-subdir-makefiles,msm8992) 8 else 9 ifneq ($(filter msm8996,$(TARGET_BOARD_PLATFORM)),) 10 include $(call all-named-subdir-makefiles,msm8996) 11 else 12 ifneq ($(filter msm8909 ,$(TARGET_BOARD_PLATFORM)),) 13 #For msm8909 target 14 include $(call all-named-subdir-makefiles,msm8909) 15 else 16 ifneq ($(filter msm8998,$(TARGET_BOARD_PLATFORM)),) 17 include $(call all-named-subdir-makefiles,msm8998) 18 endif 19 endif 20 endif 21 endif 22 endif 23endif 24