]> icculus.org git repositories - icculus/xz.git/blob - src/liblzma/delta/Makefile.am
Put the interesting parts of XZ Utils into the public domain.
[icculus/xz.git] / src / liblzma / delta / 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 = libdelta.la
9 libdelta_la_CPPFLAGS = \
10         -I@top_srcdir@/src/liblzma/api \
11         -I@top_srcdir@/src/liblzma/common
12
13 libdelta_la_SOURCES = \
14         delta_common.c \
15         delta_common.h \
16         delta_private.h
17
18 if COND_ENCODER_DELTA
19 libdelta_la_SOURCES += \
20         delta_encoder.c \
21         delta_encoder.h
22 endif
23
24 if COND_DECODER_DELTA
25 libdelta_la_SOURCES += \
26         delta_decoder.c \
27         delta_decoder.h
28 endif