source: trunk/test/Makefile.am @ 813

Last change on this file since 813 was 813, checked in by Peter, 17 years ago

Predict in NBC. Fixes #57

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