source: trunk/test/Makefile.am @ 210

Last change on this file since 210 was 210, checked in by Peter, 18 years ago

test_regression_linear added

  • 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 210 2004-11-03 08:25:00Z peter $
4
5check_PROGRAMS =                                                    \
6  test_averagerpair test_consensus_inputranker test_crossvalidation \
7  test_inputranker                                                  \
8  test_kernel test_merge test_nni test_pca test_regression_linear \
9  test_rnd test_roc       \
10  test_statistics test_svd test_svm test_vector
11
12test_averagerpair_SOURCES = test_averagerpair.cc
13test_averagerpair_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
14    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
15
16test_consensus_inputranker_SOURCES = test_consensus_inputranker.cc
17test_consensus_inputranker_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
18    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
19
20test_crossvalidation_SOURCES = test_crossvalidation.cc
21test_crossvalidation_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
22    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
23
24test_inputranker_SOURCES = test_inputranker.cc
25test_inputranker_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
26    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
27
28test_kernel_SOURCES = test_kernel.cc
29test_kernel_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
30    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
31
32test_merge_SOURCES = test_merge.cc
33test_merge_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
34    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
35
36test_nni_SOURCES = test_nni.cc
37test_nni_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
38    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
39
40test_pca_SOURCES = test_pca.cc
41test_pca_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
42    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
43
44test_regression_linear_SOURCES = test_regression_linear.cc
45test_regression_linear_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
46    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
47
48test_rnd_SOURCES = test_rnd.cc
49test_rnd_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
50    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
51
52test_roc_SOURCES = test_roc.cc
53test_roc_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
54    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
55
56test_statistics_SOURCES = test_statistics.cc
57test_statistics_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
58    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
59
60test_svd_SOURCES = test_svd.cc
61test_svd_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
62    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
63
64test_svm_SOURCES = test_svm.cc
65test_svm_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
66    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
67
68test_vector_SOURCES = test_vector.cc
69test_vector_LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \
70    $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB)
71
72INCLUDES = -I@top_srcdir@/$(CPP_TOOLS_HEADER_LOCATION) \
73     -I/home/max/jari/local/include
74
75AM_LDFLAGS = -g
Note: See TracBrowser for help on using the repository browser.