summaryrefslogtreecommitdiff
path: root/Build/source/extra/xz/src/liblzma/common/Makefile.inc
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2010-06-13 22:23:34 +0000
committerKarl Berry <karl@freefriends.org>2010-06-13 22:23:34 +0000
commitf06e0d7e9489163b444e1381a9e670ed1789725d (patch)
treed838b80e2b32cea0554b0a238b8344fe8059b4ad /Build/source/extra/xz/src/liblzma/common/Makefile.inc
parent686b7eed06371a6d8721b657c0e77207732172dc (diff)
rename to plain xz for the sake of diffs and consistent path in doc
git-svn-id: svn://tug.org/texlive/trunk@18954 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/extra/xz/src/liblzma/common/Makefile.inc')
-rw-r--r--Build/source/extra/xz/src/liblzma/common/Makefile.inc67
1 files changed, 67 insertions, 0 deletions
diff --git a/Build/source/extra/xz/src/liblzma/common/Makefile.inc b/Build/source/extra/xz/src/liblzma/common/Makefile.inc
new file mode 100644
index 00000000000..f154f82ff52
--- /dev/null
+++ b/Build/source/extra/xz/src/liblzma/common/Makefile.inc
@@ -0,0 +1,67 @@
+##
+## Author: Lasse Collin
+##
+## This file has been put into the public domain.
+## You can do whatever you want with this file.
+##
+
+liblzma_la_SOURCES += \
+ common/common.c \
+ common/common.h \
+ common/block_util.c \
+ common/easy_preset.c \
+ common/easy_preset.h \
+ common/filter_common.c \
+ common/filter_common.h \
+ common/hardware_physmem.c \
+ common/index.c \
+ common/index.h \
+ common/stream_flags_common.c \
+ common/stream_flags_common.h \
+ common/vli_size.c
+
+if COND_MAIN_ENCODER
+liblzma_la_SOURCES += \
+ common/alone_encoder.c \
+ common/block_buffer_encoder.c \
+ common/block_encoder.c \
+ common/block_encoder.h \
+ common/block_header_encoder.c \
+ common/easy_buffer_encoder.c \
+ common/easy_encoder.c \
+ common/easy_encoder_memusage.c \
+ common/filter_buffer_encoder.c \
+ common/filter_encoder.c \
+ common/filter_encoder.h \
+ common/filter_flags_encoder.c \
+ common/index_encoder.c \
+ common/index_encoder.h \
+ common/stream_buffer_encoder.c \
+ common/stream_encoder.c \
+ common/stream_encoder.h \
+ common/stream_flags_encoder.c \
+ common/vli_encoder.c
+endif
+
+if COND_MAIN_DECODER
+liblzma_la_SOURCES += \
+ common/alone_decoder.c \
+ common/alone_decoder.h \
+ common/auto_decoder.c \
+ common/block_buffer_decoder.c \
+ common/block_decoder.c \
+ common/block_decoder.h \
+ common/block_header_decoder.c \
+ common/easy_decoder_memusage.c \
+ common/filter_buffer_decoder.c \
+ common/filter_decoder.c \
+ common/filter_decoder.h \
+ common/filter_flags_decoder.c \
+ common/index_decoder.c \
+ common/index_hash.c \
+ common/stream_buffer_decoder.c \
+ common/stream_decoder.c \
+ common/stream_decoder.h \
+ common/stream_flags_decoder.c \
+ common/vli_decoder.c
+endif