blob: 802eeb1f76770059b8231cf9e4c5224c297a0fdc [file] [log] [blame]
Rosa Chow49ea3e22013-06-04 15:49:16 -07001# 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
Griff Hazen77b0e982014-02-13 09:32:55 -08006ifneq ($(filter guppy dory, $(TARGET_DEVICE)),)
7# dory and guppy expect 6515 sensors.
Nick Vaccaroc3d4ca92013-12-05 17:24:12 -08008include $(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