source: trunk/yat/regression/Makefile.am @ 2508

Last change on this file since 2508 was 2508, checked in by Peter, 12 years ago

adding a functor calculating Tukey Biweight. refs #666

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 2.1 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 2508 2011-07-08 20:56:29Z peter $
4
5# Copyright (C) 2006 Jari Häkkinen
6# Copyright (C) 2007, 2008 Jari Häkkinen, Peter Johansson
7# Copyright (C) 2009, 2010 Peter Johansson
8#
9# This file is part of the yat library, http://dev.thep.lu.se/yat
10#
11# The yat library is free software; you can redistribute it and/or
12# modify it under the terms of the GNU General Public License as
13# published by the Free Software Foundation; either version 3 of the
14# License, or (at your option) any later version.
15#
16# The c++ library is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19# General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with yat. If not, see <http://www.gnu.org/licenses/>.
23
24noinst_LTLIBRARIES = libregression.la
25libregression_la_SOURCES = AkimaInterpolation.cc                      \
26  AkimaPeriodicInterpolation.cc CSplineInterpolation.cc               \
27  CSplinePeriodicInterpolation.cc GSLInterpolation.cc KernelBox.cc    \
28  KernelTriCube.cc Linear.cc LinearInterpolation.cc LinearWeighted.cc \
29  Local.cc MultiDimensional.cc MultiDimensionalWeighted.cc Naive.cc   \
30  NaiveWeighted.cc OneDimensional.cc OneDimensionalWeighted.cc        \
31  Polynomial.cc PolynomialInterpolation.cc PolynomialWeighted.cc \
32  TukeyBiweight.cc
33
34include_regressiondir = $(includedir)/yat/regression
35
36include_regression_HEADERS = AkimaInterpolation.h                     \
37  AkimaPeriodicInterpolation.h CSplineInterpolation.h                 \
38  CSplinePeriodicInterpolation.h GSLInterpolation.h Kernel.h          \
39  KernelBox.h KernelTriCube.h Linear.h LinearInterpolation.h          \
40  LinearWeighted.h Local.h MultiDimensional.h                         \
41  MultiDimensionalWeighted.h Naive.h NaiveWeighted.h OneDimensional.h \
42  OneDimensionalWeighted.h Polynomial.h PolynomialInterpolation.h   \
43  PolynomialWeighted.h TukeyBiweight.h
44
45DISTCLEANFILES = doxygen.mk
46
47all-local: doxygen.mk
48
49DOXYGEN_INPUT=$(include_regression_HEADERS)
50
51include $(top_srcdir)/am/doxygen.am
Note: See TracBrowser for help on using the repository browser.