source: trunk/test/Makefile.am @ 609

Last change on this file since 609 was 609, checked in by Markus Ringnér, 17 years ago

Fixes #98

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
Line 
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
28TESTS = 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
37check_PROGRAMS = $(TESTS)
38
39LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
40    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
41
42INCLUDES = -I@top_srcdir@
43
44
45alignment_test_SOURCES = alignment_test.cc
46averager_test_SOURCES = averager_test.cc
47commandline_test_SOURCES = commandline_test.cc
48consensus_inputranker_test_SOURCES = consensus_inputranker_test.cc
49crossvalidation_test_SOURCES = crossvalidation_test.cc
50data_lookup_1d_test_SOURCES = data_lookup_1d_test.cc
51ensemble_test_SOURCES = ensemble_test.cc
52feature_selection_test_SOURCES = feature_selection_test.cc
53inputranker_test_SOURCES = inputranker_test.cc
54kernel_test_SOURCES = kernel_test.cc
55kernel_lookup_test_SOURCES = kernel_lookup_test.cc
56matrix_test_SOURCES = matrix_test.cc
57matrix_lookup_test_SOURCES = matrix_lookup_test.cc
58ncc_test_SOURCES = ncc_test.cc
59nni_test_SOURCES = nni_test.cc
60pca_test_SOURCES = pca_test.cc
61regression_test_SOURCES = regression_test.cc
62rnd_test_SOURCES = rnd_test.cc
63score_test_SOURCES = score_test.cc
64statistics_test_SOURCES = statistics_test.cc
65stl_utility_test_SOURCES = stl_utility_test.cc
66svd_test_SOURCES = svd_test.cc
67svm_test_SOURCES = svm_test.cc
68target_test_SOURCES = target_test.cc
69utility_test_SOURCES = utility_test.cc
70vector_test_SOURCES = vector_test.cc
Note: See TracBrowser for help on using the repository browser.