summaryrefslogtreecommitdiffstats
path: root/recovery/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'recovery/Android.mk')
-rw-r--r--recovery/Android.mk15
1 files changed, 15 insertions, 0 deletions
diff --git a/recovery/Android.mk b/recovery/Android.mk
new file mode 100644
index 0000000..9e6b177
--- /dev/null
+++ b/recovery/Android.mk
@@ -0,0 +1,15 @@
+ifeq ($(TARGET_DEVICE),tuna)
+
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE_TAGS := eng
+LOCAL_C_INCLUDES += bootable/recovery
+LOCAL_SRC_FILES := recovery_ui.c
+
+# should match TARGET_RECOVERY_UI_LIB set in BoardConfig.mk
+LOCAL_MODULE := librecovery_ui_tuna
+
+include $(BUILD_STATIC_LIBRARY)
+
+endif