aboutsummaryrefslogtreecommitdiff
path: root/C
diff options
context:
space:
mode:
authorrepo sync <gcondra@google.com>2013-08-08 18:19:02 -0700
committerrepo sync <gcondra@google.com>2013-08-08 18:20:00 -0700
commit10f238be8d88ffb2e832277ce2a48cfd73af306d (patch)
treedf8ba530c9382d105f4e735b224270d02c543865 /C
parentbaa3858d3f5d128a5c8466b700098109edcad5f2 (diff)
downloadlzma-10f238be8d88ffb2e832277ce2a48cfd73af306d.tar.gz
Add makefile for liblzma for the host.
Change-Id: I34b28990a1195777497d439e213f7e7c5f23cbd0
Diffstat (limited to 'C')
-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)