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  simple/simple_coder.c \ simple/simple_coder.h \ simple/simple_private.h
10 
11 if COND_ENCODER_SIMPLE
12 liblzma_la_SOURCES += \
13  simple/simple_encoder.c \ simple/simple_encoder.h
14 endif
15 
16 if COND_DECODER_SIMPLE
17 liblzma_la_SOURCES += \
18  simple/simple_decoder.c \ simple/simple_decoder.h
19 endif
20 
21 if COND_FILTER_X86
22 liblzma_la_SOURCES += simple/x86.c
23 endif
24 
25 if COND_FILTER_POWERPC
26 liblzma_la_SOURCES += simple/powerpc.c
27 endif
28 
29 if COND_FILTER_IA64
30 liblzma_la_SOURCES += simple/ia64.c
31 endif
32 
33 if COND_FILTER_ARM
34 liblzma_la_SOURCES += simple/arm.c
35 endif
36 
37 if COND_FILTER_ARMTHUMB
38 liblzma_la_SOURCES += simple/armthumb.c
39 endif
40 
41 if COND_FILTER_SPARC
42 liblzma_la_SOURCES += simple/sparc.c
43 endif