Rosa Chow | 49ea3e2 | 2013-06-04 15:49:16 -0700 | [diff] [blame] | 1 | # Can't have both 65xx and 60xx sensors. |
| 2 | ifneq ($(filter hammerhead, $(TARGET_DEVICE)),) |
Nick Vaccaro | c3d4ca9 | 2013-12-05 17:24:12 -0800 | [diff] [blame] | 3 | # hammerhead expects 65xx sensors. |
| 4 | include $(call all-named-subdir-makefiles,65xx) |
| 5 | else |
| 6 | ifneq ($(filter guppy dory platina, $(TARGET_DEVICE)),) |
| 7 | # dory, guppy, and platina expect 6515 sensors. |
| 8 | include $(call all-named-subdir-makefiles,6515) |
Rosa Chow | 49ea3e2 | 2013-06-04 15:49:16 -0700 | [diff] [blame] | 9 | else |
| 10 | # manta expects 60xx sensors. |
| 11 | include $(call all-named-subdir-makefiles,60xx) |
| 12 | endif |
Nick Vaccaro | c3d4ca9 | 2013-12-05 17:24:12 -0800 | [diff] [blame] | 13 | endif |