xz/src/liblzma/lz/Makefile.am

30 lines
509 B
Makefile
Raw Normal View History

2007-12-08 22:42:33 +00:00
##
## Author: Lasse Collin
2007-12-08 22:42:33 +00:00
##
## This file has been put into the public domain.
## You can do whatever you want with this file.
2007-12-08 22:42:33 +00:00
##
noinst_LTLIBRARIES = liblz.la
liblz_la_CPPFLAGS = \
-I$(top_srcdir)/src/liblzma/api \
-I$(top_srcdir)/src/liblzma/common \
-I$(top_srcdir)/src/liblzma/check
2007-12-08 22:42:33 +00:00
liblz_la_SOURCES =
if COND_ENCODER_LZ
2007-12-08 22:42:33 +00:00
liblz_la_SOURCES += \
lz_encoder.c \
lz_encoder.h \
lz_encoder_hash.h \
lz_encoder_mf.c
2007-12-08 22:42:33 +00:00
endif
if COND_DECODER_LZ
2007-12-08 22:42:33 +00:00
liblz_la_SOURCES += \
lz_decoder.c \
lz_decoder.h
endif