2007-12-08 22:42:33 +00:00
|
|
|
##
|
2009-04-13 08:27:40 +00:00
|
|
|
## Author: Lasse Collin
|
2007-12-08 22:42:33 +00:00
|
|
|
##
|
2009-04-13 08:27:40 +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
|
|
|
##
|
|
|
|
|
2008-01-17 22:50:29 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
files \
|
|
|
|
tests.h \
|
|
|
|
test_files.sh \
|
|
|
|
test_compress.sh \
|
|
|
|
bcj_test.c \
|
|
|
|
compress_prepared_bcj_sparc \
|
|
|
|
compress_prepared_bcj_x86
|
2007-12-08 22:42:33 +00:00
|
|
|
|
|
|
|
AM_CPPFLAGS = \
|
2009-06-26 11:47:31 +00:00
|
|
|
-I$(top_srcdir)/src/common \
|
|
|
|
-I$(top_srcdir)/src/liblzma/api \
|
2009-06-30 14:14:39 +00:00
|
|
|
-I$(top_builddir)/lib \
|
|
|
|
$(STATIC_CPPFLAGS)
|
|
|
|
|
|
|
|
AM_LDFLAGS = $(STATIC_LDFLAGS)
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2009-06-26 11:47:31 +00:00
|
|
|
LDADD = $(top_builddir)/src/liblzma/liblzma.la
|
2007-12-08 22:42:33 +00:00
|
|
|
|
|
|
|
if COND_GNULIB
|
2009-06-26 11:47:31 +00:00
|
|
|
LDADD += $(top_builddir)/lib/libgnu.a
|
2007-12-08 22:42:33 +00:00
|
|
|
endif
|
|
|
|
|
2009-06-26 11:47:31 +00:00
|
|
|
LDADD += $(LTLIBINTL)
|
|
|
|
|
2007-12-08 22:42:33 +00:00
|
|
|
check_PROGRAMS = \
|
2008-01-17 22:50:29 +00:00
|
|
|
create_compress_files \
|
2007-12-08 22:42:33 +00:00
|
|
|
test_check \
|
|
|
|
test_stream_flags \
|
|
|
|
test_filter_flags \
|
|
|
|
test_block_header \
|
2008-06-18 15:02:10 +00:00
|
|
|
test_index
|
2007-12-08 22:42:33 +00:00
|
|
|
|
2008-01-07 11:49:19 +00:00
|
|
|
TESTS = \
|
2008-01-17 22:50:29 +00:00
|
|
|
test_check \
|
|
|
|
test_stream_flags \
|
|
|
|
test_filter_flags \
|
|
|
|
test_block_header \
|
|
|
|
test_index \
|
2008-08-28 19:53:15 +00:00
|
|
|
test_files.sh \
|
2008-01-17 22:50:29 +00:00
|
|
|
test_compress.sh
|
|
|
|
|
|
|
|
clean-local:
|
|
|
|
-rm -f compress_generated_*
|