aboutsummaryrefslogtreecommitdiff
path: root/C
diff options
context:
space:
mode:
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)