commit | 23580ca27a0a8109312fdd36cc363ad1f4719889 | [log] [tgz] |
---|---|---|
author | The Android Open Source Project <initial-contribution@android.com> | Tue Oct 21 07:00:00 2008 -0700 |
committer | The Android Open Source Project <initial-contribution@android.com> | Tue Oct 21 07:00:00 2008 -0700 |
tree | 0bb90eaa72f8df110162499f756b5cbfb7d49235 |
Initial Contribution
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)