1# Can't have both 65xx and 60xx sensors.
2ifneq ($(filter hammerhead, $(TARGET_DEVICE)),)
3# hammerhead expects 65xx sensors.
4include $(call all-named-subdir-makefiles,65xx)
5else
6ifneq ($(filter guppy dory, $(TARGET_DEVICE)),)
7# dory and guppy expect 6515 sensors.
8include $(call all-named-subdir-makefiles,6515)
9else
10ifneq ($(filter manta grouper tuna mako, $(TARGET_DEVICE)),)
11# manta, grouper, tuna, and mako expect 60xx sensors.
12include $(call all-named-subdir-makefiles,60xx)
13endif
14endif
15endif
16