summaryrefslogtreecommitdiffstats
path: root/sdcard/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'sdcard/Android.mk')
-rw-r--r--sdcard/Android.mk10
1 files changed, 10 insertions, 0 deletions
diff --git a/sdcard/Android.mk b/sdcard/Android.mk
new file mode 100644
index 000000000..c430ac8ee
--- /dev/null
+++ b/sdcard/Android.mk
@@ -0,0 +1,10 @@
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES:= sdcard.c
+LOCAL_MODULE:= sdcard
+
+LOCAL_SHARED_LIBRARIES := libc
+
+include $(BUILD_EXECUTABLE)