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 \
|
2018-11-02 18:18:45 +00:00
|
|
|
ossfuzz \
|
2022-06-02 17:25:21 +00:00
|
|
|
tuktest.h \
|
2008-01-17 22:50:29 +00:00
|
|
|
tests.h \
|
|
|
|
test_files.sh \
|
|
|
|
test_compress.sh \
|
2022-05-23 18:17:47 +00:00
|
|
|
test_compress_prepared_bcj_sparc \
|
|
|
|
test_compress_prepared_bcj_x86 \
|
|
|
|
test_compress_generated_abc \
|
|
|
|
test_compress_generated_random \
|
|
|
|
test_compress_generated_text \
|
2011-07-31 08:01:47 +00:00
|
|
|
test_scripts.sh \
|
2008-01-17 22:50:29 +00:00
|
|
|
bcj_test.c \
|
|
|
|
compress_prepared_bcj_sparc \
|
2014-06-13 16:21:54 +00:00
|
|
|
compress_prepared_bcj_x86 \
|
|
|
|
xzgrep_expected_output
|
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 \
|
2010-10-05 11:13:16 +00:00
|
|
|
-I$(top_builddir)/lib
|
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 \
|
2022-06-10 13:35:18 +00:00
|
|
|
test_hardware \
|
2007-12-08 22:42:33 +00:00
|
|
|
test_stream_flags \
|
|
|
|
test_filter_flags \
|
|
|
|
test_block_header \
|
2012-05-28 17:42:11 +00:00
|
|
|
test_index \
|
2022-06-12 03:31:40 +00:00
|
|
|
test_bcj_exact_size \
|
|
|
|
test_vli
|
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 \
|
2022-06-10 13:35:18 +00:00
|
|
|
test_hardware \
|
2008-01-17 22:50:29 +00:00
|
|
|
test_stream_flags \
|
|
|
|
test_filter_flags \
|
|
|
|
test_block_header \
|
|
|
|
test_index \
|
2012-05-28 17:42:11 +00:00
|
|
|
test_bcj_exact_size \
|
2022-06-12 03:31:40 +00:00
|
|
|
test_vli \
|
2008-08-28 19:53:15 +00:00
|
|
|
test_files.sh \
|
2022-05-23 18:17:47 +00:00
|
|
|
test_compress_prepared_bcj_sparc \
|
|
|
|
test_compress_prepared_bcj_x86 \
|
|
|
|
test_compress_generated_abc \
|
|
|
|
test_compress_generated_random \
|
|
|
|
test_compress_generated_text
|
2011-09-06 09:03:41 +00:00
|
|
|
|
|
|
|
if COND_SCRIPTS
|
|
|
|
TESTS += test_scripts.sh
|
|
|
|
endif
|
2008-01-17 22:50:29 +00:00
|
|
|
|
|
|
|
clean-local:
|
2014-06-13 15:58:22 +00:00
|
|
|
-rm -f compress_generated_* \
|
|
|
|
xzgrep_test_output xzgrep_test_1.xz xzgrep_test_2.xz
|