]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/lz/Makefile.am
Put the interesting parts of XZ Utils into the public domain.
[icculus/xz.git] / src / liblzma / lz / 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 = liblz.la
9 liblz_la_CPPFLAGS = \
10         -I@top_srcdir@/src/liblzma/api \
11         -I@top_srcdir@/src/liblzma/common \
12         -I@top_srcdir@/src/liblzma/check
13 liblz_la_SOURCES =
14
15
16 if COND_ENCODER_LZ
17 liblz_la_SOURCES += \
18         lz_encoder.c \
19         lz_encoder.h \
20         lz_encoder_hash.h \
21         lz_encoder_mf.c
22 endif
23
24
25 if COND_DECODER_LZ
26 liblz_la_SOURCES += \
27         lz_decoder.c \
28         lz_decoder.h
29 endif