1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 723 2007-01-01 15:58:01Z jari $ |
---|
4 | |
---|
5 | # Copyright (C) 2003 Daniel Dalevi |
---|
6 | # Copyright (C) 2004 Peter Johansson |
---|
7 | # Copyright (C) 2005 Jari Häkkinen, Peter Johansson |
---|
8 | # Copyright (C) 2006 Jari Häkkinen, Peter Johansson, Markus Ringnér |
---|
9 | # |
---|
10 | # This file is part of the yat library, http://lev.thep.lu.se/trac/yat |
---|
11 | # |
---|
12 | # The yat library is free software; you can redistribute it |
---|
13 | # and/or modify it under the terms of the GNU General Public License as |
---|
14 | # published by the Free Software Foundation; either version 2 of the |
---|
15 | # License, or (at your option) any later version. |
---|
16 | # |
---|
17 | # The yat library is distributed in the hope that it will be useful, |
---|
18 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
20 | # General Public License for more details. |
---|
21 | # |
---|
22 | # You should have received a copy of the GNU General Public License |
---|
23 | # along with this program; if not, write to the Free Software |
---|
24 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
25 | # 02111-1307, USA. |
---|
26 | |
---|
27 | TESTS = alignment_test averager_test commandline_test \ |
---|
28 | consensus_inputranker_test crossvalidation_test data_lookup_1d_test \ |
---|
29 | ensemble_test feature_selection_test fileutil_test inputranker_test \ |
---|
30 | kernel_test kernel_lookup_test matrix_test matrix_lookup_test \ |
---|
31 | ncc_test nni_test pca_test regression_test rnd_test score_test \ |
---|
32 | statistics_test subset_generator_test svd_test svm_test target_test \ |
---|
33 | utility_test vector_test |
---|
34 | |
---|
35 | check_PROGRAMS = $(TESTS) |
---|
36 | |
---|
37 | LDADD = @top_srcdir@/$(YAT_LIB_LOCATION)/$(YAT_LIB) \ |
---|
38 | $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB) |
---|
39 | |
---|
40 | INCLUDES = -I@top_srcdir@ |
---|
41 | |
---|
42 | |
---|
43 | alignment_test_SOURCES = alignment_test.cc |
---|
44 | averager_test_SOURCES = averager_test.cc |
---|
45 | commandline_test_SOURCES = commandline_test.cc |
---|
46 | consensus_inputranker_test_SOURCES = consensus_inputranker_test.cc |
---|
47 | crossvalidation_test_SOURCES = crossvalidation_test.cc |
---|
48 | data_lookup_1d_test_SOURCES = data_lookup_1d_test.cc |
---|
49 | ensemble_test_SOURCES = ensemble_test.cc |
---|
50 | feature_selection_test_SOURCES = feature_selection_test.cc |
---|
51 | fileutil_test_SOURCES = fileutil_test.cc |
---|
52 | inputranker_test_SOURCES = inputranker_test.cc |
---|
53 | kernel_test_SOURCES = kernel_test.cc |
---|
54 | kernel_lookup_test_SOURCES = kernel_lookup_test.cc |
---|
55 | matrix_test_SOURCES = matrix_test.cc |
---|
56 | matrix_lookup_test_SOURCES = matrix_lookup_test.cc |
---|
57 | ncc_test_SOURCES = ncc_test.cc |
---|
58 | nni_test_SOURCES = nni_test.cc |
---|
59 | pca_test_SOURCES = pca_test.cc |
---|
60 | regression_test_SOURCES = regression_test.cc |
---|
61 | rnd_test_SOURCES = rnd_test.cc |
---|
62 | score_test_SOURCES = score_test.cc |
---|
63 | statistics_test_SOURCES = statistics_test.cc |
---|
64 | subset_generator_test_SOURCES = subset_generator_test.cc |
---|
65 | svd_test_SOURCES = svd_test.cc |
---|
66 | svm_test_SOURCES = svm_test.cc |
---|
67 | target_test_SOURCES = target_test.cc |
---|
68 | utility_test_SOURCES = utility_test.cc |
---|
69 | vector_test_SOURCES = vector_test.cc |
---|