aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConley Owens <cco3@android.com>2014-01-18 01:57:52 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2014-01-18 01:57:53 +0000
commit19cf4f773361c09e47a2ffe1613d66cbf632227f (patch)
treec8d4d56ae622b137ad6bdd099cbaa09609a471cf
parente5601385dd88f7f46b3d3cbdb468ee9caa75ec83 (diff)
parent0812fc79e1bf47fa2f1c44d78a16e759acfd28f8 (diff)
downloadlzma-idea133-weekly-release.tar.gz
Merge "Add makefile for liblzma for the host."android-l-preview_r2l-previewidea133-weekly-release
-rw-r--r--C/Util/Lzma/Android.mk10
1 files changed, 10 insertions, 0 deletions
diff --git a/C/Util/Lzma/Android.mk b/C/Util/Lzma/Android.mk
new file mode 100644
index 0000000..e486b61
--- /dev/null
+++ b/C/Util/Lzma/Android.mk
@@ -0,0 +1,10 @@
+# Copyright 2008 The Android Open Source Project
+#
+LOCAL_PATH := $(call my-dir)
+include $(CLEAR_VARS)
+
+LOCAL_MODULE := liblzma
+LOCAL_SRC_FILES := LzmaUtil.c ../../Alloc.c ../../LzFind.c ../../LzmaDec.c ../../LzmaEnc.c ../../7zFile.c ../../7zStream.c
+LOCAL_CFLAGS := -c -O2 -Wall -D_7ZIP_ST
+LOCAL_C_INCLUDES := $(LOCAL_PATH)/../../
+include $(BUILD_HOST_STATIC_LIBRARY)