]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/subblock/Makefile.am
2577e0b4738d30b14e0af12508ea6c6e8ac3b47d
[icculus/xz.git] / src / liblzma / subblock / 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 = libsubblock.la
16 libsubblock_la_SOURCES =
17 libsubblock_la_CPPFLAGS = \
18         -I@top_srcdir@/src/liblzma/api \
19         -I@top_srcdir@/src/liblzma/common
20
21 if COND_ENCODER_SUBBLOCK
22 libsubblock_la_SOURCES += \
23         subblock_encoder.c \
24         subblock_encoder.h
25 endif
26
27 if COND_DECODER_SUBBLOCK
28 libsubblock_la_SOURCES += \
29         subblock_decoder.c \
30         subblock_decoder.h \
31         subblock_decoder_helper.c \
32         subblock_decoder_helper.h
33 endif