1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 281 2005-04-20 16:45:02Z peter $ |
---|
4 | |
---|
5 | # Copyright (C) 2005, 2006 Jari Häkkinen, Peter Johansson, Markus Ringnèr |
---|
6 | # |
---|
7 | # This file is part of the thep c++ tools library, |
---|
8 | # http://lev.thep.lu.se/trac/c++_tools |
---|
9 | # |
---|
10 | # The c++ tools library is free software; you can redistribute it |
---|
11 | # and/or modify it under the terms of the GNU General Public License as |
---|
12 | # published by the Free Software Foundation; either version 2 of the |
---|
13 | # License, or (at your option) any later version. |
---|
14 | # |
---|
15 | # The c++ library is distributed in the hope that it will be useful, |
---|
16 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
17 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
18 | # General Public License for more details. |
---|
19 | # |
---|
20 | # You should have received a copy of the GNU General Public License |
---|
21 | # along with this program; if not, write to the Free Software |
---|
22 | # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA |
---|
23 | # 02111-1307, USA. |
---|
24 | |
---|
25 | noinst_LTLIBRARIES = libclassifier.la |
---|
26 | libclassifier_la_SOURCES = \ |
---|
27 | ConsensusInputRanker.cc \ |
---|
28 | CrossSplitter.cc \ |
---|
29 | DataLookup1D.cc \ |
---|
30 | DataLookup2D.cc \ |
---|
31 | EnsembleBuilder.cc \ |
---|
32 | GaussianKernelFunction.cc \ |
---|
33 | InputRanker.cc \ |
---|
34 | Kernel.cc \ |
---|
35 | Kernel_MEV.cc \ |
---|
36 | Kernel_SEV.cc \ |
---|
37 | KernelLookup.cc \ |
---|
38 | KernelWeighted_MEV.cc \ |
---|
39 | KernelWeighted_SEV.cc \ |
---|
40 | MatrixLookup.cc \ |
---|
41 | NCC.cc \ |
---|
42 | PolynomialKernelFunction.cc \ |
---|
43 | SupervisedClassifier.cc \ |
---|
44 | SVM.cc \ |
---|
45 | Target.cc |
---|
46 | |
---|
47 | |
---|
48 | |
---|
49 | include_classifierdir = $(includedir)/c++_tools/classifier |
---|
50 | |
---|
51 | include_classifier_HEADERS = \ |
---|
52 | ConsensusInputRanker.h \ |
---|
53 | CrossSplitter.h \ |
---|
54 | DataLookup2D.h \ |
---|
55 | EnsembleBuilder.h \ |
---|
56 | GaussianKernelFunction.h \ |
---|
57 | InputRanker.h \ |
---|
58 | Kernel.h \ |
---|
59 | KernelFunction.h \ |
---|
60 | Kernel_MEV.h \ |
---|
61 | Kernel_SEV.h \ |
---|
62 | KernelLookup.h \ |
---|
63 | KernelWeighted_MEV.h \ |
---|
64 | KernelWeighted_SEV.h \ |
---|
65 | MatrixLookup.h \ |
---|
66 | NCC.h \ |
---|
67 | PolynomialKernelFunction.h \ |
---|
68 | SupervisedClassifier.h \ |
---|
69 | SVM.h \ |
---|
70 | Target.h \ |
---|
71 | DataLookup1D.h |
---|