| 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 bcj_test.c \ | 13 bcj_test.c \ |
| 14 compress_prepared_bcj_sparc \ | 14 compress_prepared_bcj_sparc \ |
| 15 compress_prepared_bcj_x86 | 15 compress_prepared_bcj_x86 |
| 16 | 16 |
| 17 AM_CPPFLAGS = \ | 17 AM_CPPFLAGS = \ |
| 18 -I$(top_srcdir)/src/common \ | 18 -I$(top_srcdir)/src/common \ |
| 19 -I$(top_srcdir)/src/liblzma/api \ | 19 -I$(top_srcdir)/src/liblzma/api \ |
| 20 » -I$(top_builddir)/lib \ | 20 » -I$(top_builddir)/lib |
| 21 » $(STATIC_CPPFLAGS) | |
| 22 | |
| 23 AM_LDFLAGS = $(STATIC_LDFLAGS) | |
| 24 | 21 |
| 25 LDADD = $(top_builddir)/src/liblzma/liblzma.la | 22 LDADD = $(top_builddir)/src/liblzma/liblzma.la |
| 26 | 23 |
| 27 if COND_GNULIB | 24 if COND_GNULIB |
| 28 LDADD += $(top_builddir)/lib/libgnu.a | 25 LDADD += $(top_builddir)/lib/libgnu.a |
| 29 endif | 26 endif |
| 30 | 27 |
| 31 LDADD += $(LTLIBINTL) | 28 LDADD += $(LTLIBINTL) |
| 32 | 29 |
| 33 check_PROGRAMS = \ | 30 check_PROGRAMS = \ |
| 34 create_compress_files \ | 31 create_compress_files \ |
| 35 test_check \ | 32 test_check \ |
| 36 test_stream_flags \ | 33 test_stream_flags \ |
| 37 test_filter_flags \ | 34 test_filter_flags \ |
| 38 test_block_header \ | 35 test_block_header \ |
| 39 test_index | 36 test_index |
| 40 | 37 |
| 41 TESTS = \ | 38 TESTS = \ |
| 42 test_check \ | 39 test_check \ |
| 43 test_stream_flags \ | 40 test_stream_flags \ |
| 44 test_filter_flags \ | 41 test_filter_flags \ |
| 45 test_block_header \ | 42 test_block_header \ |
| 46 test_index \ | 43 test_index \ |
| 47 test_files.sh \ | 44 test_files.sh \ |
| 48 test_compress.sh | 45 test_compress.sh |
| 49 | 46 |
| 50 clean-local: | 47 clean-local: |
| 51 -rm -f compress_generated_* | 48 -rm -f compress_generated_* |
| OLD | NEW |