]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/delta/Makefile.am
Sort of garbage collection commit. :-| Many things are still
[icculus/xz.git] / src / liblzma / delta / Makefile.am
1 ##
2 ##  Copyright (C) 2008 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 = libdelta.la
16 libdelta_la_CPPFLAGS = \
17         -I@top_srcdir@/src/liblzma/api \
18         -I@top_srcdir@/src/liblzma/common
19
20 libdelta_la_SOURCES = \
21         delta_common.c \
22         delta_common.h
23
24 if COND_ENCODER_DELTA
25 libdelta_la_SOURCES += \
26         delta_encoder.c \
27         delta_encoder.h
28 endif
29
30 if COND_DECODER_DELTA
31 libdelta_la_SOURCES += \
32         delta_decoder.c \
33         delta_decoder.h
34 endif