]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/simple/Makefile.am
Imported to git.
[icculus/xz.git] / src / liblzma / simple / Makefile.am
1 ##
2 ##  Copyright (C) 2007 Lasse Collin
3 ##
4 ##  This library is free software; you can redistribute it and/or
5 ##  modify it under the terms of the GNU Lesser General Public
6 ##  License as published by the Free Software Foundation; either
7 ##  version 2.1 of the License, or (at your option) any later version.
8 ##
9 ##  This library is distributed in the hope that it will be useful,
10 ##  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ##  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 ##  Lesser General Public License for more details.
13 ##
14
15 noinst_LTLIBRARIES = libsimple.la
16 libsimple_la_CPPFLAGS = \
17         -I@top_srcdir@/src/liblzma/api \
18         -I@top_srcdir@/src/liblzma/common
19 libsimple_la_SOURCES = \
20         simple_coder.c \
21         simple_coder.h \
22         simple_private.h
23
24 if COND_FILTER_X86
25 libsimple_la_SOURCES += x86.c
26 endif
27
28 if COND_FILTER_POWERPC
29 libsimple_la_SOURCES += powerpc.c
30 endif
31
32 if COND_FILTER_IA64
33 libsimple_la_SOURCES += ia64.c
34 endif
35
36 if COND_FILTER_ARM
37 libsimple_la_SOURCES += arm.c
38 endif
39
40 if COND_FILTER_ARMTHUMB
41 libsimple_la_SOURCES += armthumb.c
42 endif
43
44 if COND_FILTER_SPARC
45 libsimple_la_SOURCES += sparc.c
46 endif