summaryrefslogtreecommitdiffstats
path: root/mountd/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'mountd/Android.mk')
-rw-r--r--mountd/Android.mk19
1 files changed, 19 insertions, 0 deletions
diff --git a/mountd/Android.mk b/mountd/Android.mk
new file mode 100644
index 0000000..87bcef3
--- /dev/null
+++ b/mountd/Android.mk
@@ -0,0 +1,19 @@
+LOCAL_PATH:= $(call my-dir)
+
+include $(CLEAR_VARS)
+
+LOCAL_SRC_FILES:= \
+ AutoMount.c \
+ ProcessKiller.c \
+ Server.c \
+ mountd.c
+
+LOCAL_MODULE:= mountd
+
+LOCAL_C_INCLUDES := $(KERNEL_HEADERS)
+
+LOCAL_CFLAGS := -DCREATE_MOUNT_POINTS=0
+
+LOCAL_SHARED_LIBRARIES := libcutils
+
+include $(BUILD_EXECUTABLE)