aboutsummaryrefslogtreecommitdiff
path: root/init/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'init/Android.mk')
-rw-r--r--init/Android.mk13
1 files changed, 13 insertions, 0 deletions
diff --git a/init/Android.mk b/init/Android.mk
new file mode 100644
index 0000000..0e8d85a
--- /dev/null
+++ b/init/Android.mk
@@ -0,0 +1,13 @@
+ifeq ($(TARGET_INIT_VENDOR_LIB),libinit_shinano)
+
+LOCAL_PATH := $(call my-dir)
+
+include $(CLEAR_VARS)
+LOCAL_MODULE_TAGS := optional
+LOCAL_C_INCLUDES := system/core/init
+LOCAL_CFLAGS := -Wall
+LOCAL_SRC_FILES := init_shinano.c
+LOCAL_MODULE := libinit_shinano
+include $(BUILD_STATIC_LIBRARY)
+
+endif