source: trunk/test/Makefile.am @ 779

Last change on this file since 779 was 779, checked in by Peter, 16 years ago

Refs #101

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 779 2007-03-05 18:58:30Z peter $
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# Copyright (C) 2007 Peter Johansson
10#
11# This file is part of the yat library, http://lev.thep.lu.se/trac/yat
12#
13# The yat 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 yat 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 crossvalidation_test data_lookup_1d_test \
30  ensemble_test feature_selection_test fileutil_test inputranker_test \
31  kernel_test kernel_lookup_test matrix_test matrix_lookup_test       \
32  ncc_test nni_test pca_test regression_test rnd_test roc_test \
33  score_test      \
34  statistics_test subset_generator_test svd_test svm_test target_test \
35  utility_test vector_test
36
37check_PROGRAMS = $(TESTS)
38
39LDADD = @top_srcdir@/$(YAT_LIB_LOCATION)/$(YAT_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
53fileutil_test_SOURCES = fileutil_test.cc
54inputranker_test_SOURCES = inputranker_test.cc
55kernel_test_SOURCES = kernel_test.cc
56kernel_lookup_test_SOURCES = kernel_lookup_test.cc
57matrix_test_SOURCES = matrix_test.cc
58matrix_lookup_test_SOURCES = matrix_lookup_test.cc
59ncc_test_SOURCES = ncc_test.cc
60nni_test_SOURCES = nni_test.cc
61pca_test_SOURCES = pca_test.cc
62regression_test_SOURCES = regression_test.cc
63rnd_test_SOURCES = rnd_test.cc
64roc_test_SOURCES = roc_test.cc
65score_test_SOURCES = score_test.cc
66statistics_test_SOURCES = statistics_test.cc
67subset_generator_test_SOURCES = subset_generator_test.cc
68svd_test_SOURCES = svd_test.cc
69svm_test_SOURCES = svm_test.cc
70target_test_SOURCES = target_test.cc
71utility_test_SOURCES = utility_test.cc
72vector_test_SOURCES = vector_test.cc
Note: See TracBrowser for help on using the repository browser.