1ifneq ($(filter msm8084 msm8x84,$(TARGET_BOARD_PLATFORM)),) 2 #This is for 8084 based platforms 3 include $(call all-named-subdir-makefiles,msm8084) 4else 5ifneq ($(filter msm8974 msm8x74,$(TARGET_BOARD_PLATFORM)),) 6 #This is for 8974 based (and B-family) platforms 7 include $(call all-named-subdir-makefiles,msm8974) 8else 9ifneq ($(filter msm8226 msm8x26,$(TARGET_BOARD_PLATFORM)),) 10 include $(call all-named-subdir-makefiles,msm8226) 11else 12ifneq ($(filter msm8960,$(TARGET_BOARD_PLATFORM)),) 13 include $(call all-named-subdir-makefiles,msm8960) 14else 15ifneq ($(filter msm8994 msm8992,$(TARGET_BOARD_PLATFORM)),) 16 include $(call all-named-subdir-makefiles,msm8994) 17endif 18endif 19endif 20endif 21endif 22