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