blob: 65c9e4fc0f1178048a0daec3fa289683f9f36f18 [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
Nick Vaccaro424ca7d2014-08-05 16:25:46 -070010ifneq ($(filter manta grouper tuna mako, $(TARGET_DEVICE)),)
11# manta, grouper, tuna, and mako expect 60xx sensors.
Rosa Chow49ea3e22013-06-04 15:49:16 -070012include $(call all-named-subdir-makefiles,60xx)
13endif
Nick Vaccaroc3d4ca92013-12-05 17:24:12 -080014endif
Nick Vaccaro424ca7d2014-08-05 16:25:46 -070015endif