1##
2## Author: Lasse Collin
3##
4## This file has been put into the public domain.
5## You can do whatever you want with this file.
6##
7
8EXTRA_DIST = \
9	files \
10	tests.h \
11	test_files.sh \
12	test_compress.sh \
13	bcj_test.c \
14	compress_prepared_bcj_sparc \
15	compress_prepared_bcj_x86
16
17AM_CPPFLAGS = \
18	-I$(top_srcdir)/src/common \
19	-I$(top_srcdir)/src/liblzma/api \
20	-I$(top_builddir)/lib \
21	$(STATIC_CPPFLAGS)
22
23AM_LDFLAGS = $(STATIC_LDFLAGS)
24
25LDADD = $(top_builddir)/src/liblzma/liblzma.la
26
27if COND_GNULIB
28LDADD += $(top_builddir)/lib/libgnu.a
29endif
30
31LDADD += $(LTLIBINTL)
32
33check_PROGRAMS = \
34	create_compress_files \
35	test_check \
36	test_stream_flags \
37	test_filter_flags \
38	test_block_header \
39	test_index
40
41TESTS = \
42	test_check \
43	test_stream_flags \
44	test_filter_flags \
45	test_block_header \
46	test_index \
47	test_files.sh \
48	test_compress.sh
49
50clean-local:
51	-rm -f compress_generated_*
52