summaryrefslogtreecommitdiffstats
path: root/Utilities/cmliblzma/liblzma/lzma/Makefile.inc
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-07-21 18:31:04 (GMT)
committerBrad King <brad.king@kitware.com>2014-07-21 19:54:44 (GMT)
commit133d42fe59e2f15610afaed287ef80ec4ff6f888 (patch)
treeea0831dc0601b3e91c3881d9f182c085ad4fffe2 /Utilities/cmliblzma/liblzma/lzma/Makefile.inc
parent8510533f0e713abeedf53a737c702d683b636ecb (diff)
parentc289e63491982dd8aed7c6b6f54d390df91aaf95 (diff)
downloadCMake-133d42fe59e2f15610afaed287ef80ec4ff6f888.zip
CMake-133d42fe59e2f15610afaed287ef80ec4ff6f888.tar.gz
CMake-133d42fe59e2f15610afaed287ef80ec4ff6f888.tar.bz2
Merge branch 'liblzma-upstream' into add-liblzma
Diffstat (limited to 'Utilities/cmliblzma/liblzma/lzma/Makefile.inc')
-rw-r--r--Utilities/cmliblzma/liblzma/lzma/Makefile.inc43
1 files changed, 43 insertions, 0 deletions
diff --git a/Utilities/cmliblzma/liblzma/lzma/Makefile.inc b/Utilities/cmliblzma/liblzma/lzma/Makefile.inc
new file mode 100644
index 0000000..7fc4d17
--- /dev/null
+++ b/Utilities/cmliblzma/liblzma/lzma/Makefile.inc
@@ -0,0 +1,43 @@
+##
+## Author: Lasse Collin
+##
+## This file has been put into the public domain.
+## You can do whatever you want with this file.
+##
+
+EXTRA_DIST += lzma/fastpos_tablegen.c
+
+liblzma_la_SOURCES += lzma/lzma_common.h
+
+if COND_ENCODER_LZMA1
+liblzma_la_SOURCES += \
+ lzma/fastpos.h \
+ lzma/lzma_encoder.h \
+ lzma/lzma_encoder.c \
+ lzma/lzma_encoder_presets.c \
+ lzma/lzma_encoder_private.h \
+ lzma/lzma_encoder_optimum_fast.c \
+ lzma/lzma_encoder_optimum_normal.c
+
+if !COND_SMALL
+liblzma_la_SOURCES += lzma/fastpos_table.c
+endif
+endif
+
+if COND_DECODER_LZMA1
+liblzma_la_SOURCES += \
+ lzma/lzma_decoder.c \
+ lzma/lzma_decoder.h
+endif
+
+if COND_ENCODER_LZMA2
+liblzma_la_SOURCES += \
+ lzma/lzma2_encoder.c \
+ lzma/lzma2_encoder.h
+endif
+
+if COND_DECODER_LZMA2
+liblzma_la_SOURCES += \
+ lzma/lzma2_decoder.c \
+ lzma/lzma2_decoder.h
+endif