1 # Can't have both 65xx and 60xx sensors. 2 ifneq ($(filter hammerhead, $(TARGET_DEVICE)),) 3 # hammerhead expects 65xx sensors. 4 include $(call all-named-subdir-makefiles,65xx) 5 else ifneq ($(filter guppy dory, $(TARGET_DEVICE)),) 6 # dory and guppy expect 6515 sensors. 7 include $(call all-named-subdir-makefiles,6515) 8 endif 9