Home | History | Annotate | Download | only in bt
      1 # TODO:  Find a better way to separate build configs for ADP vs non-ADP devices
      2 ifneq ($(TARGET_BOARD_AUTO),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         endif
     16       endif
     17     endif
     18   endif
     19 endif
     20