1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 261 2005-03-09 17:06:19Z peter $ |
---|
4 | |
---|
5 | check_PROGRAMS = \ |
---|
6 | test_alignment test_averagerpair test_consensus_inputranker \ |
---|
7 | test_crossvalidation \ |
---|
8 | test_inputranker test_kernel test_merge test_nni test_pca \ |
---|
9 | test_regression_linear test_regression_local test_rnd test_roc \ |
---|
10 | test_statistics test_svd test_svm test_vector |
---|
11 | |
---|
12 | LDADD = @top_srcdir@/$(CPP_TOOLS_LIB_LOCATION)/$(CPP_TOOLS_LIB) \ |
---|
13 | $(GSL_LIB) $(CBLAS_LIB) $(MATH_LIB) |
---|
14 | |
---|
15 | INCLUDES = -I@top_srcdir@/$(CPP_TOOLS_HEADER_LOCATION) @LOCAL_INCLUDES@ |
---|
16 | |
---|
17 | AM_LDFLAGS = -g |
---|
18 | |
---|
19 | test_alignment_SOURCES = test_alignment.cc |
---|
20 | test_averagerpair_SOURCES = test_averagerpair.cc |
---|
21 | test_consensus_inputranker_SOURCES = test_consensus_inputranker.cc |
---|
22 | test_crossvalidation_SOURCES = test_crossvalidation.cc |
---|
23 | test_inputranker_SOURCES = test_inputranker.cc |
---|
24 | test_kernel_SOURCES = test_kernel.cc |
---|
25 | test_merge_SOURCES = test_merge.cc |
---|
26 | test_nni_SOURCES = test_nni.cc |
---|
27 | test_pca_SOURCES = test_pca.cc |
---|
28 | test_regression_linear_SOURCES = test_regression_linear.cc |
---|
29 | test_regression_local_SOURCES = test_regression_local.cc |
---|
30 | test_rnd_SOURCES = test_rnd.cc |
---|
31 | test_roc_SOURCES = test_roc.cc |
---|
32 | test_statistics_SOURCES = test_statistics.cc |
---|
33 | test_svd_SOURCES = test_svd.cc |
---|
34 | test_svm_SOURCES = test_svm.cc |
---|
35 | test_vector_SOURCES = test_vector.cc |
---|