source: trunk/yat/classifier/Makefile.am @ 1079

Last change on this file since 1079 was 1079, checked in by Peter, 16 years ago

fixes #311

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date ID
File size: 2.2 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id$
4
5# Copyright (C) 2005, 2006 Jari Häkkinen, Markus Ringnér, Peter Johansson
6# Copyright (C) 2007 Jari Häkkinen, Peter Johansson
7#
8# This file is part of the yat library, http://trac.thep.lu.se/yat
9#
10# The yat library is free software; you can redistribute it and/or
11# 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 yat 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
25AM_CPPFLAGS = -I@top_srcdir@
26
27noinst_LTLIBRARIES = libclassifier.la
28libclassifier_la_SOURCES = \
29  BootstrapSampler.cc \
30  ConsensusInputRanker.cc \
31  CrossValidationSampler.cc \
32  DataLookup1D.cc \
33  DataLookupWeighted1D.cc \
34  DataLookup2D.cc \
35  FeatureSelector.cc \
36  FeatureSelectorIR.cc \
37  FeatureSelectorRandom.cc \
38  GaussianKernelFunction.cc \
39  InputRanker.cc \
40  Kernel.cc \
41  Kernel_MEV.cc \
42  Kernel_SEV.cc \
43  KernelLookup.cc \
44  MatrixLookup.cc \
45  MatrixLookupWeighted.cc \
46  NBC.cc \
47  PolynomialKernelFunction.cc \
48  Sampler.cc \
49  SupervisedClassifier.cc \
50  SVindex.cc \
51  SVM.cc \
52  Target.cc \
53  utility.cc
54
55include_classifierdir = $(includedir)/yat/classifier
56
57include_classifier_HEADERS = \
58  BootstrapSampler.h \
59  ConsensusInputRanker.h \
60  CrossValidationSampler.h \
61  DataLookup1D.h \
62  DataLookup2D.h \
63  DataLookupWeighted1D.h \
64  EnsembleBuilder.h \
65  FeatureSelector.h \
66  FeatureSelectorIR.h \
67  FeatureSelectorRandom.h \
68  GaussianKernelFunction.h \
69  IGP.h \
70  IRRank.h \
71  IRRetrieve.h \
72  InputRanker.h \
73  Kernel.h \
74  KernelFunction.h \
75  KernelLookup.h \
76  Kernel_MEV.h \
77  Kernel_SEV.h \
78  KNN.h \
79  MatrixLookup.h \
80  MatrixLookupWeighted.h \
81  NBC.h \
82  NCC.h \
83  PolynomialKernelFunction.h \
84  SVM.h \
85  SVindex.h \
86  Sampler.h \
87  SubsetGenerator.h \
88  SupervisedClassifier.h \
89  Target.h \
90  utility.h
Note: See TracBrowser for help on using the repository browser.