commit | c24a8e688a6312764254beac2b2520bb0c5e998d | [log] [tgz] |
---|---|---|
author | The Android Open Source Project <initial-contribution@android.com> | Tue Mar 03 19:28:42 2009 -0800 |
committer | The Android Open Source Project <initial-contribution@android.com> | Tue Mar 03 19:28:42 2009 -0800 |
tree | 7df23711566b358047301d8413ee399105546e8b | |
parent | ffb48f64fec674c6dd923eb8b1eb3f743e05a8ba [diff] [blame] |
auto import from //depot/cupcake/@135843
diff --git a/minzip/Android.mk b/minzip/Android.mk new file mode 100644 index 0000000..b1ee674 --- /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)