1
0
mirror of https://git.tukaani.org/xz.git synced 2025-02-23 08:58:31 +00:00
xz/src/liblzma/lz/Makefile.inc
Lasse Collin c5f68b5cc7 Make liblzma produce the same output on both endiannesses.
Seems that it is a problem in some cases if the same
version of XZ Utils produces different output on different
endiannesses, so this commit fixes that problem. The output
will still vary between different XZ Utils versions, but I
cannot avoid that for now.

This commit bloatens the code on big endian systems by 1 KiB,
which should be OK since liblzma is bloated already. ;-)
2009-10-02 11:03:26 +03:00

23 lines
380 B
Makefile

##
## Author: Lasse Collin
##
## This file has been put into the public domain.
## You can do whatever you want with this file.
##
if COND_ENCODER_LZ
liblzma_la_SOURCES += \
lz/lz_encoder.c \
lz/lz_encoder.h \
lz/lz_encoder_hash.h \
lz/lz_encoder_hash_table.h \
lz/lz_encoder_mf.c
endif
if COND_DECODER_LZ
liblzma_la_SOURCES += \
lz/lz_decoder.c \
lz/lz_decoder.h
endif