]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/lz/Makefile.am
Sort of garbage collection commit. :-| Many things are still
[icculus/xz.git] / src / liblzma / lz / 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 = liblz.la
16 liblz_la_CPPFLAGS = \
17         -I@top_srcdir@/src/liblzma/api \
18         -I@top_srcdir@/src/liblzma/common \
19         -I@top_srcdir@/src/liblzma/check
20 liblz_la_SOURCES =
21
22
23 if COND_ENCODER_LZ
24 liblz_la_SOURCES += \
25         lz_encoder.c \
26         lz_encoder.h \
27         lz_encoder_hash.h \
28         lz_encoder_mf.c
29 endif
30
31
32 if COND_DECODER_LZ
33 liblz_la_SOURCES += \
34         lz_decoder.c \
35         lz_decoder.h
36 endif