]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/subblock/Makefile.am
Put the interesting parts of XZ Utils into the public domain.
[icculus/xz.git] / src / liblzma / subblock / 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 = libsubblock.la
9 libsubblock_la_SOURCES =
10 libsubblock_la_CPPFLAGS = \
11         -I@top_srcdir@/src/liblzma/api \
12         -I@top_srcdir@/src/liblzma/common
13
14 if COND_ENCODER_SUBBLOCK
15 libsubblock_la_SOURCES += \
16         subblock_encoder.c \
17         subblock_encoder.h
18 endif
19
20 if COND_DECODER_SUBBLOCK
21 libsubblock_la_SOURCES += \
22         subblock_decoder.c \
23         subblock_decoder.h \
24         subblock_decoder_helper.c \
25         subblock_decoder_helper.h
26 endif