2007-12-09 00:42:33 +02:00
|
|
|
##
|
2009-04-13 11:27:40 +03:00
|
|
|
## Author: Lasse Collin
|
2007-12-09 00:42:33 +02:00
|
|
|
##
|
2009-04-13 11:27:40 +03:00
|
|
|
## This file has been put into the public domain.
|
|
|
|
## You can do whatever you want with this file.
|
2007-12-09 00:42:33 +02:00
|
|
|
##
|
|
|
|
|
2008-01-18 00:50:29 +02:00
|
|
|
EXTRA_DIST = \
|
|
|
|
files \
|
|
|
|
tests.h \
|
|
|
|
test_files.sh \
|
|
|
|
test_compress.sh \
|
2011-07-31 11:01:47 +03:00
|
|
|
test_scripts.sh \
|
2008-01-18 00:50:29 +02:00
|
|
|
bcj_test.c \
|
|
|
|
compress_prepared_bcj_sparc \
|
2014-06-13 19:21:54 +03:00
|
|
|
compress_prepared_bcj_x86 \
|
|
|
|
xzgrep_expected_output
|
2007-12-09 00:42:33 +02:00
|
|
|
|
|
|
|
AM_CPPFLAGS = \
|
2009-06-26 14:47:31 +03:00
|
|
|
-I$(top_srcdir)/src/common \
|
|
|
|
-I$(top_srcdir)/src/liblzma/api \
|
2010-10-05 14:13:16 +03:00
|
|
|
-I$(top_builddir)/lib
|
2007-12-09 00:42:33 +02:00
|
|
|
|
2009-06-26 14:47:31 +03:00
|
|
|
LDADD = $(top_builddir)/src/liblzma/liblzma.la
|
2007-12-09 00:42:33 +02:00
|
|
|
|
|
|
|
if COND_GNULIB
|
2009-06-26 14:47:31 +03:00
|
|
|
LDADD += $(top_builddir)/lib/libgnu.a
|
2007-12-09 00:42:33 +02:00
|
|
|
endif
|
|
|
|
|
2009-06-26 14:47:31 +03:00
|
|
|
LDADD += $(LTLIBINTL)
|
|
|
|
|
2007-12-09 00:42:33 +02:00
|
|
|
check_PROGRAMS = \
|
2008-01-18 00:50:29 +02:00
|
|
|
create_compress_files \
|
2007-12-09 00:42:33 +02:00
|
|
|
test_check \
|
|
|
|
test_stream_flags \
|
|
|
|
test_filter_flags \
|
|
|
|
test_block_header \
|
2012-05-28 20:42:11 +03:00
|
|
|
test_index \
|
|
|
|
test_bcj_exact_size
|
2007-12-09 00:42:33 +02:00
|
|
|
|
2008-01-07 13:49:19 +02:00
|
|
|
TESTS = \
|
2008-01-18 00:50:29 +02:00
|
|
|
test_check \
|
|
|
|
test_stream_flags \
|
|
|
|
test_filter_flags \
|
|
|
|
test_block_header \
|
|
|
|
test_index \
|
2012-05-28 20:42:11 +03:00
|
|
|
test_bcj_exact_size \
|
2008-08-28 22:53:15 +03:00
|
|
|
test_files.sh \
|
2011-09-06 12:03:41 +03:00
|
|
|
test_compress.sh
|
|
|
|
|
|
|
|
if COND_SCRIPTS
|
|
|
|
TESTS += test_scripts.sh
|
|
|
|
endif
|
2008-01-18 00:50:29 +02:00
|
|
|
|
|
|
|
clean-local:
|
2014-06-13 18:58:22 +03:00
|
|
|
-rm -f compress_generated_* \
|
|
|
|
xzgrep_test_output xzgrep_test_1.xz xzgrep_test_2.xz
|