2007-12-08 23:42:33 +01:00
|
|
|
##
|
2009-04-13 10:27:40 +02:00
|
|
|
## Author: Lasse Collin
|
2007-12-08 23:42:33 +01:00
|
|
|
##
|
2009-04-13 10:27:40 +02:00
|
|
|
## This file has been put into the public domain.
|
|
|
|
## You can do whatever you want with this file.
|
2007-12-08 23:42:33 +01:00
|
|
|
##
|
|
|
|
|
2008-01-17 23:50:29 +01: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 23:42:33 +01:00
|
|
|
|
|
|
|
AM_CPPFLAGS = \
|
2009-06-26 13:47:31 +02:00
|
|
|
-I$(top_srcdir)/src/common \
|
|
|
|
-I$(top_srcdir)/src/liblzma/api \
|
2009-06-30 16:14:39 +02:00
|
|
|
-I$(top_builddir)/lib \
|
|
|
|
$(STATIC_CPPFLAGS)
|
|
|
|
|
|
|
|
AM_LDFLAGS = $(STATIC_LDFLAGS)
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2009-06-26 13:47:31 +02:00
|
|
|
LDADD = $(top_builddir)/src/liblzma/liblzma.la
|
2007-12-08 23:42:33 +01:00
|
|
|
|
|
|
|
if COND_GNULIB
|
2009-06-26 13:47:31 +02:00
|
|
|
LDADD += $(top_builddir)/lib/libgnu.a
|
2007-12-08 23:42:33 +01:00
|
|
|
endif
|
|
|
|
|
2009-06-26 13:47:31 +02:00
|
|
|
LDADD += $(LTLIBINTL)
|
|
|
|
|
2007-12-08 23:42:33 +01:00
|
|
|
check_PROGRAMS = \
|
2008-01-17 23:50:29 +01:00
|
|
|
create_compress_files \
|
2007-12-08 23:42:33 +01:00
|
|
|
test_check \
|
|
|
|
test_stream_flags \
|
|
|
|
test_filter_flags \
|
|
|
|
test_block_header \
|
2008-06-18 17:02:10 +02:00
|
|
|
test_index
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2008-01-07 12:49:19 +01:00
|
|
|
TESTS = \
|
2008-01-17 23:50:29 +01:00
|
|
|
test_check \
|
|
|
|
test_stream_flags \
|
|
|
|
test_filter_flags \
|
|
|
|
test_block_header \
|
|
|
|
test_index \
|
2008-08-28 21:53:15 +02:00
|
|
|
test_files.sh \
|
2008-01-17 23:50:29 +01:00
|
|
|
test_compress.sh
|
|
|
|
|
|
|
|
clean-local:
|
|
|
|
-rm -f compress_generated_*
|