Rizin
unix-like reverse engineering framework and cli tools
Makefile.inc
Go to the documentation of this file.
1 ##
2 ## Author: Lasse Collin
3 ##
4 ## This file has been put into the public domain.
5 ## You can do whatever you want with this file.
6 ##
7 
8 liblzma_la_SOURCES += \
9  common/common.c \ common/common.h \ common/memcmplen.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
10 
11 if COND_THREADS
12 liblzma_la_SOURCES += common/hardware_cputhreads.c
13 endif
14 
15 if COND_MAIN_ENCODER
16 liblzma_la_SOURCES += \
17  common/alone_encoder.c \ common/block_buffer_encoder.c \ common/block_buffer_encoder.h \ 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_flags_encoder.c \ common/vli_encoder.c
18 
19 if COND_THREADS
20 liblzma_la_SOURCES += \
21  common/outqueue.c \ common/outqueue.h \ common/stream_encoder_mt.c
22 endif
23 endif
24 
25 if COND_MAIN_DECODER
26 liblzma_la_SOURCES += \
27  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
28 endif
29