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