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 | |
---|
24 | noinst_LTLIBRARIES = libregression.la |
---|
25 | libregression_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 | |
---|
34 | include_regressiondir = $(includedir)/yat/regression |
---|
35 | |
---|
36 | include_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 | |
---|
45 | DISTCLEANFILES = doxygen.mk |
---|
46 | |
---|
47 | all-local: doxygen.mk |
---|
48 | |
---|
49 | DOXYGEN_INPUT=$(include_regression_HEADERS) |
---|
50 | |
---|
51 | include $(top_srcdir)/am/doxygen.am |
---|