diff options
Diffstat (limited to '')
-rw-r--r-- | minzip/Android.mk | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/minzip/Android.mk b/minzip/Android.mk new file mode 100644 index 000000000..b1ee67439 --- /dev/null +++ b/minzip/Android.mk @@ -0,0 +1,19 @@ +LOCAL_PATH := $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_SRC_FILES := \ + Hash.c \ + SysUtil.c \ + DirUtil.c \ + Inlines.c \ + Zip.c + +LOCAL_C_INCLUDES += \ + external/zlib \ + external/safe-iop/include + +LOCAL_MODULE := libminzip + +LOCAL_CFLAGS += -Wall + +include $(BUILD_STATIC_LIBRARY) |