summaryrefslogtreecommitdiffstats
path: root/simg2img/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'simg2img/Android.mk')
-rw-r--r--simg2img/Android.mk14
1 files changed, 14 insertions, 0 deletions
diff --git a/simg2img/Android.mk b/simg2img/Android.mk
new file mode 100644
index 000000000..74755e7db
--- /dev/null
+++ b/simg2img/Android.mk
@@ -0,0 +1,14 @@
+LOCAL_PATH := system/core/libsparse
+
+include $(CLEAR_VARS)
+LOCAL_SRC_FILES := simg2img.c \
+ sparse_crc32.c
+LOCAL_MODULE := simg2img_twrp
+LOCAL_MODULE_STEM := simg2img
+LOCAL_MODULE_PATH := $(TARGET_RECOVERY_ROOT_OUT)/sbin
+LOCAL_MODULE_TAGS := optional
+LOCAL_SHARED_LIBRARIES := \
+ libsparse \
+ libz
+LOCAL_CFLAGS := -Werror
+include $(BUILD_EXECUTABLE)