blob: ee290a597ba2ba1a9b836e29096ab887d1bee3e0 [file] [log] [blame]
Rosa Chow49ea3e22013-06-04 15:49:16 -07001# Can't have both 65xx and 60xx sensors.
2ifneq ($(filter hammerhead, $(TARGET_DEVICE)),)
Nick Vaccaroc3d4ca92013-12-05 17:24:12 -08003 # hammerhead expects 65xx sensors.
4 include $(call all-named-subdir-makefiles,65xx)
5else
6ifneq ($(filter guppy dory platina, $(TARGET_DEVICE)),)
7# dory, guppy, and platina expect 6515 sensors.
8include $(call all-named-subdir-makefiles,6515)
Rosa Chow49ea3e22013-06-04 15:49:16 -07009else
10# manta expects 60xx sensors.
11include $(call all-named-subdir-makefiles,60xx)
12endif
Nick Vaccaroc3d4ca92013-12-05 17:24:12 -080013endif