source: trunk/test/Makefile.am @ 3312

Last change on this file since 3312 was 3312, checked in by Peter, 9 years ago

correct lazycheck deps

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 11.2 KB
Line 
1## $Id: Makefile.am 3312 2014-08-25 08:29:29Z peter $
2
3# Copyright (C) 2003 Daniel Dalevi, Jari Häkkinen
4# Copyright (C) 2004 Jari Häkkinen, Peter Johansson, Cecilia Ritz
5# Copyright (C) 2005 Jari Häkkinen, Peter Johansson
6# Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson, Markus Ringnér
7# Copyright (C) 2009, 2010, 2011, 2012, 2013, 2014 Peter Johansson
8#
9# This file is part of the yat library, http://dev.thep.lu.se/yat
10#
11# The yat library is free software; you can redistribute it
12# and/or modify it under the terms of the GNU General Public License as
13# published by the Free Software Foundation; either version 3 of the
14# License, or (at your option) any later version.
15#
16# The yat library is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19# General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with yat. If not, see <http://www.gnu.org/licenses/>.
23
24## we use suffix .cc for all source
25AM_DEFAULT_SOURCE_EXT = .cc
26
27noinst_HEADERS = test/Suite.h
28
29check_LTLIBRARIES = test/libyattest.la
30
31check_SCRIPTS = test/defs.sh
32
33EXTRA_DIST += test/init.sh
34
35EXTRA_PROGRAMS = test/alignment.test \
36  test/alignment2.test \
37  test/averager.test \
38  test/averager1.test \
39  test/averager3.test \
40  test/averager4.test \
41  test/bam.test \
42  test/bam_pair_analyse.test \
43  test/bam_iterator.test \
44  test/bam_read_filter.test \
45  test/bam_region_iterator.test \
46  test/bam_header.test \
47  test/bam_header2.test \
48  test/bam_pair_iterator.test \
49  test/cigar.test \
50  test/codon.test test/commandline.test \
51  test/concept.test \
52  test/consensus_inputranker.test test/data_lookup_1d.test  \
53  test/data_weight.test test/data_weight_proxy.test \
54  test/deleter.test \
55  test/distance.test \
56  test/dna.test test/ensemble.test test/feature_selection.test \
57  test/fileutil.test \
58  test/fisher.test test/genomic_position.test test/getline_iterator.test \
59  test/gff.test test/help.test test/histogram.test \
60  test/igp.test test/index.test test/inputranker.test test/interpolation.test \
61  test/iterator.test test/kendall.test test/kernel_lookup.test \
62  test/kernel_matrix.test \
63  test/kernel_pca.test test/kernel.test \
64  test/knn.test test/kolmogorov_smirnov.test test/large_file.test \
65  test/likelihood_ratio_test_binomial.test \
66  test/matrix_lookup.test \
67  test/matrix_lookup_weighted.test test/matrix.test \
68  test/matrix_weighted.test test/merge.test \
69  test/merge_iterator.test test/nbc.test \
70  test/ncc.test test/nni.test test/normalization.test \
71  test/ostream_iterator.test \
72  test/pca.test \
73  test/queue.test test/queue2.test \
74  test/range.test test/regression.test test/rnd.test \
75  test/rng-mt.test \
76  test/roc.test \
77  test/score.test test/segment.test test/smart_ptr.test   \
78  test/smith_waterman.test \
79  test/smoother.test test/spearman.test \
80  test/split.test test/statistics.test test/stream_redirect.test \
81  test/subset_generator.test test/svd.test test/svm.test \
82  test/svm_multi_class.test test/target.test \
83  test/ttest.test test/tukey.test \
84  test/utility.test test/vector.test test/version.test test/view.test
85
86TESTS = $(EXTRA_PROGRAMS)
87CLEANFILES += $(EXTRA_PROGRAMS)
88
89# tests not passing through yet
90XFAIL_TESTS =
91
92DISTRIBUTED_TESTS = \
93test/cmd_test.sh \
94test/doxygen_test.sh \
95test/help_test.sh \
96test/static_test.sh \
97test/yat_config_test.sh \
98test/yat_config_cblas_test.sh \
99test/yat_cpp_add_flag_test.sh \
100test/yat_cxx_add_flag_test.sh \
101test/yat_header_assert_test.sh \
102test/yat_ld_add_flag_test.sh \
103test/yat_have_svn_wc_test.sh \
104test/yat_lt_compile_ifelse_test.sh \
105test/yat_lt_link_ifelse_test.sh \
106test/yat_lt_link_la_ifelse_test.sh \
107test/yat_msg_error_test.sh \
108test/yat_msg_error_test2.sh \
109test/yat_m4_with_bam_test.sh \
110test/yat_m4_test.sh \
111test/yat_m4_test2.sh \
112test/yat_pc_test.sh \
113test/yat_prog_move_if_change_test.sh \
114test/yat_revision_header_test.sh \
115test/yat_svn_release_year_test.sh \
116test/yat_svn_revision_test.sh \
117test/yat_use_libtool_tag_test.sh
118
119TESTS += $(DISTRIBUTED_TESTS)
120EXTRA_DIST += $(DISTRIBUTED_TESTS)
121
122TEST_EXTENSIONS = .sh .test
123
124LDADD = yat/libyat.la test/libyattest.la $(YAT_LIBS)
125
126#test_large_file_test_LDADD = test/libyattest.la
127
128test_libyattest_la_LIBADD = yat/libyat.la
129test_libyattest_la_SOURCES = test/Suite.cc
130
131lazycheck:; $(MAKE) $(AM_MAKEFLAGS) check RECHECK_LOGS=
132
133shell_test_deps = $(srcdir)/test/init.sh test/defs.sh
134
135# dependencies for lazycheck
136test/cmd_test.log: test/help.test $(shell_test_deps)
137test/help_test.log: test/help.test $(shell_test_deps)
138test/static_test.log: $(srcdir)/m4/yat.m4 $(shell_test_deps)
139test/yat_config_test.log: build_support/yat-config \
140  build_support/for_installation/yat-config $(shell_test_deps)
141test/yat_config_cblas_test.log: build_support/yat-config $(shell_test_deps)
142test/yat_cpp_add_flag_test.log: $(srcdir)/m4/yat_add_flag.m4 \
143  $(srcdir)/m4/ax_append_flag.m4 \
144  $(srcdir)/m4/ax_check_preproc_flag.m4 \
145  $(shell_test_deps)
146test/yat_cxx_add_flag_test.log: $(top_srcdir)/m4/yat_add_flag.m4 \
147  $(top_srcdir)/m4/ax_append_compile_flags.m4 \
148  $(top_srcdir)/m4/ax_append_flag.m4 \
149  $(top_srcdir)/m4/ax_check_compile_flag.m4 \
150  $(top_srcdir)/m4/ax_require_defined.m4 \
151  $(shell_test_deps)
152test/yat_have_svn_wc_test.log: $(srcdir)/m4/yat_am_macros.m4 $(shell_test_deps)
153test/yat_ld_add_flag_test.log: $(top_srcdir)/m4/yat_add_flag.m4 \
154  $(top_srcdir)/m4/ax_append_flag.m4 \
155  $(top_srcdir)/m4/ax_append_link_flags.m4 \
156  $(top_srcdir)/m4/ax_check_link_flag.m4 \
157  $(top_srcdir)/m4/ax_require_defined.m4 \
158  $(shell_test_deps)
159test/yat_lt_compile_ifelse_test.log: $(shell_test_deps) \
160  $(top_srcdir)/m4/yat_lt_link_ifelse.m4
161test/yat_lt_link_ifelse_test.log: $(top_srcdir)/m4/yat_lt_link_ifelse.m4 \
162  $(top_srcdir)/m4/yat.m4 $(shell_test_deps) \
163  $(top_builddir)/build_support/yat-config
164test/yat_lt_link_la_ifelse_test.log: $(shell_test_deps) \
165  test/lib/libmy-shared.la \
166  $(top_srcdir)/m4/yat_lt_link_ifelse.m4 \
167  $(top_srcdir)/m4/yat_common.m4
168test/yat_m4_test.log:$(top_srcdir)/m4/yat.m4 $(shell_test_deps) \
169  $(top_builddir)/build_support/yat-config
170test/yat_m4_test2.log:$(top_srcdir)/m4/yat.m4 $(shell_test_deps)
171test/yat_msg_error_test.log:$(srcdir)/m4/yat_msg_error.m4 $(shell_test_deps)
172test/yat_msg_error_test2.log:$(srcdir)/m4/yat_msg_error.m4 $(shell_test_deps)
173test/yat_pc_test.log: $(shell_test_deps) build_support/yat.pc
174test/yat_prog_move_if_change_test.log: $(top_srcdir)/m4/yat_am_macros.m4 \
175  $(top_srcdir)/m4/ax_ac_append_to_file.m4 \
176  $(top_srcdir)/m4/ax_ac_print_to_file.m4 \
177  $(top_srcdir)/m4/ax_file_escapes.m4 \
178  $(shell_test_deps)
179test/yat_revision_header_test.log: $(top_srcdir)/m4/yat_am_macros.m4 \
180  $(shell_test_deps) \
181  $(top_srcdir)/m4/ax_ac_append_to_file.m4 \
182  $(top_srcdir)/m4/ax_ac_print_to_file.m4 \
183  $(top_srcdir)/m4/ax_file_escapes.m4
184test/yat_svn_release_year_test.log: $(top_srcdir)/m4/yat_am_macros.m4 \
185  $(shell_test_deps) \
186  $(top_srcdir)/m4/ax_ac_append_to_file.m4 \
187  $(top_srcdir)/m4/ax_ac_print_to_file.m4 \
188  $(top_srcdir)/m4/ax_file_escapes.m4
189test/yat_svn_revision_test.log: $(top_srcdir)/m4/yat_am_macros.m4 \
190  $(shell_test_deps) \
191  $(top_srcdir)/m4/ax_ac_append_to_file.m4 \
192  $(top_srcdir)/m4/ax_ac_print_to_file.m4 \
193  $(top_srcdir)/m4/ax_file_escapes.m4
194test/yat_use_libtool_tag_test.log: $(shell_test_deps) \
195  $(top_srcdir)/m4/yat_lt_link_ifelse.m4
196
197if DX_ENABLE_HTML
198test/doxygen_test.log: doc/$(DX_HTML_OUTPUT)/index.html
199endif
200
201# yat-hello is an example of a tiny package that uses yat
202dist_noinst_DATA = $(srcdir)/test/yat-hello-1.0.tar.gz
203
204# Directory yat-hello contains what a developer would check out
205# from a VCS, i.e., no files generated by autotools.
206yat_hello_sources  =
207yat_hello_sources += $(srcdir)/test/yat-hello/configure.ac
208yat_hello_sources += $(srcdir)/test/yat-hello/Makefile.am
209yat_hello_sources += $(srcdir)/test/yat-hello/hello.cc
210
211EXTRA_DIST += $(yat_hello_sources)
212
213yat_hello_tmp_files =
214yat_hello_tmp_files += Makefile.in
215yat_hello_tmp_files += autom4te.cache
216yat_hello_tmp_files += aclocal.m4
217yat_hello_tmp_files += build-aux
218yat_hello_tmp_files += configure
219yat_hello_tmp_files += m4
220
221
222yat_hello_deps = $(yat_hello_sources)
223yat_hello_deps += $(top_srcdir)/m4/yat.m4
224## We depend on version.m4 so tarball is updated at every release (at least)
225yat_hello_deps += $(top_srcdir)/m4/version.m4
226
227$(srcdir)/test/yat-hello-1.0.tar.gz: $(yat_hello_deps)
228  $(AM_V_GEN)$(MKDIR_P) $(srcdir)/test/yat-hello/m4 \
229  && cd $(srcdir)/test/yat-hello \
230  && cp $(abs_top_srcdir)/m4/yat.m4 m4/ \
231  && autoreconf -if $(yat_dev_null) \
232  && ./configure --without-yat $(yat_dev_null) \
233  && $(MAKE) $(AM_MAKEFLAGS) dist $(yat_dev_null) \
234  && $(MAKE) $(AM_MAKEFLAGS) distclean $(yat_dev_null) \
235  && mv yat-hello-1.0.tar.gz .. \
236  && rm -rf $(yat_hello_tmp_files)
237
238INSTALL_CHECK_TARGETS += yat-hello-check
239
240yat-hello-check: $(srcdir)/test/yat-hello-1.0.tar.gz
241  GZIP=$(GZIP_ENV) gzip -dc $(srcdir)/test/yat-hello-1.0.tar.gz | $(am__untar)\
242  && cd yat-hello-1.0 \
243  && ./configure --with-yat=$(bindir) \
244  && $(MAKE) $(AM_MAKEFLAGS) all \
245  && ./hello \
246  && test x"`./hello`" = x"$(VERSION)" \
247  && cd .. \
248  && rm -rf yat-hello-1.0
249
250
251## test data
252EXTRA_DIST += \
253test/data/foo.sam \
254test/data/isoform.peaks \
255test/data/knni_matrix.data \
256test/data/knni_result.data \
257test/data/knni_weight.data \
258test/data/nm_alpha_linear_matlab.txt \
259test/data/nm_data_centralized.txt \
260test/data/nm_kernel.txt \
261test/data/nm_kernel2.txt \
262test/data/nm_kernel_gaussian.txt \
263test/data/nm_target_bin.txt \
264test/data/normalization_test.data \
265test/data/rank_data.txt \
266test/data/rank_target.txt \
267test/data/regression_gauss.data \
268test/data/small.gff2 \
269test/data/small.gff3 \
270test/data/sorlie_centroid_classes.txt \
271test/data/sorlie_centroid_data.txt  \
272test/data/sorlie_centroid_predictions.txt \
273test/data/sorlie_centroids.txt \
274test/data/vector1.data  \
275test/data/vector2.data \
276test/data/vector3.data \
277test/data/vector4.data \
278test/data/vector5.data \
279test/data/vector6.data  \
280test/data/vector7.data \
281test/data/wenni_result.data \
282test/data/wenni_weight.data
283
284CLEANFILES += test/data/.dirstamp
285CLEANFILES += test/data/foo.bam
286CLEANFILES += test/data/foo.sorted.bam
287CLEANFILES += test/data/foo.sorted.bam.bai
288
289check_DATA  = test/data/foo.sorted.bam
290check_DATA += test/data/foo.sorted.bam.bai
291
292test/data/.dirstamp:
293  @$(MKDIR_P) test/data
294  @: > $@
295
296if HAVE_SAMTOOLS
297test/data/foo.bam: test/data/foo.sam test/data/.dirstamp Makefile
298  $(AM_V_GEN)
299  $(AM_V_at)$(SAMTOOLS) view -Sb $(srcdir)/test/data/foo.sam \
300  > $@-t && mv $@-t $@
301
302test/data/foo.sorted.bam: test/data/foo.bam
303  $(AM_V_GEN)
304  $(AM_V_at)$(SAMTOOLS) sort test/data/foo.bam test/data/foo.sorted
305
306test/data/foo.sorted.bam.bai: test/data/foo.sorted.bam
307  $(AM_V_GEN)
308  $(AM_V_at)$(SAMTOOLS) index test/data/foo.sorted.bam
309else
310test/data/foo.sorted.bam: test/data/.dirstamp
311  $(AM_V_at): > $@
312
313test/data/foo.sorted.bam.bai: test/data/.dirstamp
314  $(AM_V_at): > $@
315endif
316
317test/lib/.dirstamp:
318  @$(MKDIR_P) test/lib
319  @: > $@
320
321check_DATA += test/lib/libmy-static.a
322EXTRA_DIST += test/gen_libmy_static.sh
323
324test/lib/libmy-static.a: test/lib/.dirstamp test/gen_libmy_static.sh \
325test/defs.sh
326  $(AM_V_GEN)
327  $(AM_V_at)$(SHELL) $(srcdir)/test/gen_libmy_static.sh $(yat_dev_null)
328
329check_DATA += test/lib/libmy-shared.la
330EXTRA_DIST += test/gen_libmy_shared.sh
331
332test/lib/libmy-shared.la: test/lib/.dirstamp test/gen_libmy_shared.sh \
333test/defs.sh
334  $(AM_V_GEN)
335  $(AM_V_at)$(SHELL) $(srcdir)/test/gen_libmy_shared.sh $(yat_dev_null)
Note: See TracBrowser for help on using the repository browser.