summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk9
1 files changed, 8 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index ff26264..65c9e4f 100644
--- a/Android.mk
+++ b/Android.mk
@@ -2,7 +2,14 @@
ifneq ($(filter hammerhead, $(TARGET_DEVICE)),)
# hammerhead expects 65xx sensors.
include $(call all-named-subdir-makefiles,65xx)
-else ifneq ($(filter guppy dory, $(TARGET_DEVICE)),)
+else
+ifneq ($(filter guppy dory, $(TARGET_DEVICE)),)
# dory and guppy expect 6515 sensors.
include $(call all-named-subdir-makefiles,6515)
+else
+ifneq ($(filter manta grouper tuna mako, $(TARGET_DEVICE)),)
+# manta, grouper, tuna, and mako expect 60xx sensors.
+include $(call all-named-subdir-makefiles,60xx)
+endif
+endif
endif