OLD | NEW |
(Empty) | |
| 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 |
| 8 EXTRA_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 |
| 17 AM_CPPFLAGS = \ |
| 18 -I$(top_srcdir)/src/common \ |
| 19 -I$(top_srcdir)/src/liblzma/api \ |
| 20 -I$(top_builddir)/lib \ |
| 21 $(STATIC_CPPFLAGS) |
| 22 |
| 23 AM_LDFLAGS = $(STATIC_LDFLAGS) |
| 24 |
| 25 LDADD = $(top_builddir)/src/liblzma/liblzma.la |
| 26 |
| 27 if COND_GNULIB |
| 28 LDADD += $(top_builddir)/lib/libgnu.a |
| 29 endif |
| 30 |
| 31 LDADD += $(LTLIBINTL) |
| 32 |
| 33 check_PROGRAMS = \ |
| 34 create_compress_files \ |
| 35 test_check \ |
| 36 test_stream_flags \ |
| 37 test_filter_flags \ |
| 38 test_block_header \ |
| 39 test_index |
| 40 |
| 41 TESTS = \ |
| 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 |
| 50 clean-local: |
| 51 -rm -f compress_generated_* |
OLD | NEW |