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