summaryrefslogtreecommitdiffstats
path: root/led/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'led/Android.mk')
-rw-r--r--led/Android.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/led/Android.mk b/led/Android.mk
new file mode 100644
index 0000000..2b6ac0b
--- /dev/null
+++ b/led/Android.mk
@@ -0,0 +1,15 @@
+# Copyright 2006 The Android Open Source Project
+
+ifeq ($(TARGET_DEVICE),sooner)
+LOCAL_SRC_FILES += led/led_sardine.c
+LOCAL_CFLAGS += -DCONFIG_LED_SARDINE
+endif
+ifeq ($(TARGET_DEVICE),dream)
+LOCAL_SRC_FILES += led/led_trout.c
+LOCAL_CFLAGS += -DCONFIG_LED_TROUT
+endif
+ifeq ($(QEMU_HARDWARE),true)
+LOCAL_CFLAGS += -DCONFIG_LED_QEMU
+endif
+LOCAL_SRC_FILES += led/led_stub.c
+