]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/rangecoder/Makefile.am
Put the interesting parts of XZ Utils into the public domain.
[icculus/xz.git] / src / liblzma / rangecoder / 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 EXTRA_DIST = price_tablegen.c
9
10 noinst_LTLIBRARIES = librangecoder.la
11
12 librangecoder_la_SOURCES = range_common.h
13 librangecoder_la_CPPFLAGS = \
14         -I@top_srcdir@/src/liblzma/api \
15         -I@top_srcdir@/src/liblzma/common
16
17 if COND_ENCODER_LZMA1
18 librangecoder_la_SOURCES += \
19         range_encoder.h \
20         price.h \
21         price_table.c
22 endif
23
24 if COND_DECODER_LZMA1
25 librangecoder_la_SOURCES += range_decoder.h
26 endif