source: trunk/test/Makefile.am @ 723

Last change on this file since 723 was 723, checked in by Jari Häkkinen, 17 years ago

Fixes #10. Removed read_to*(std::vector..) functionality.

  • 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 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
27TESTS = 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
35check_PROGRAMS = $(TESTS)
36
37LDADD = @top_srcdir@/$(YAT_LIB_LOCATION)/$(YAT_LIB) \
38    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
39
40INCLUDES = -I@top_srcdir@
41
42
43alignment_test_SOURCES = alignment_test.cc
44averager_test_SOURCES = averager_test.cc
45commandline_test_SOURCES = commandline_test.cc
46consensus_inputranker_test_SOURCES = consensus_inputranker_test.cc
47crossvalidation_test_SOURCES = crossvalidation_test.cc
48data_lookup_1d_test_SOURCES = data_lookup_1d_test.cc
49ensemble_test_SOURCES = ensemble_test.cc
50feature_selection_test_SOURCES = feature_selection_test.cc
51fileutil_test_SOURCES = fileutil_test.cc
52inputranker_test_SOURCES = inputranker_test.cc
53kernel_test_SOURCES = kernel_test.cc
54kernel_lookup_test_SOURCES = kernel_lookup_test.cc
55matrix_test_SOURCES = matrix_test.cc
56matrix_lookup_test_SOURCES = matrix_lookup_test.cc
57ncc_test_SOURCES = ncc_test.cc
58nni_test_SOURCES = nni_test.cc
59pca_test_SOURCES = pca_test.cc
60regression_test_SOURCES = regression_test.cc
61rnd_test_SOURCES = rnd_test.cc
62score_test_SOURCES = score_test.cc
63statistics_test_SOURCES = statistics_test.cc
64subset_generator_test_SOURCES = subset_generator_test.cc
65svd_test_SOURCES = svd_test.cc
66svm_test_SOURCES = svm_test.cc
67target_test_SOURCES = target_test.cc
68utility_test_SOURCES = utility_test.cc
69vector_test_SOURCES = vector_test.cc
Note: See TracBrowser for help on using the repository browser.