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