]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/simple/Makefile.am
Put the interesting parts of XZ Utils into the public domain.
[icculus/xz.git] / src / liblzma / simple / Makefile.am
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 noinst_LTLIBRARIES = libsimple.la
9 libsimple_la_CPPFLAGS = \
10         -I@top_srcdir@/src/liblzma/api \
11         -I@top_srcdir@/src/liblzma/common
12 libsimple_la_SOURCES = \
13         simple_coder.c \
14         simple_coder.h \
15         simple_private.h
16
17 if COND_ENCODER_SIMPLE
18 libsimple_la_SOURCES += \
19         simple_encoder.c \
20         simple_encoder.h
21 endif
22
23 if COND_DECODER_SIMPLE
24 libsimple_la_SOURCES += \
25         simple_decoder.c \
26         simple_decoder.h
27 endif
28
29 if COND_FILTER_X86
30 libsimple_la_SOURCES += x86.c
31 endif
32
33 if COND_FILTER_POWERPC
34 libsimple_la_SOURCES += powerpc.c
35 endif
36
37 if COND_FILTER_IA64
38 libsimple_la_SOURCES += ia64.c
39 endif
40
41 if COND_FILTER_ARM
42 libsimple_la_SOURCES += arm.c
43 endif
44
45 if COND_FILTER_ARMTHUMB
46 libsimple_la_SOURCES += armthumb.c
47 endif
48
49 if COND_FILTER_SPARC
50 libsimple_la_SOURCES += sparc.c
51 endif