source: trunk/yat/utility/Makefile.am @ 2451

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

update copyright years

  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 2451 2011-03-28 23:16:14Z peter $
4
5# Copyright (C) 2005, 2006, 2007, 2008 Jari Häkkinen, Peter Johansson
6# Copyright (C) 2009, 2010, 2011 Peter Johansson
7#
8# This file is part of the yat library, http://dev.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 3 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 yat. If not, see <http://www.gnu.org/licenses/>.
22
23noinst_LTLIBRARIES = libutility.la
24libutility_la_SOURCES = \
25  Alignment.cc ColumnStream.cc CommandLine.cc DataWeight.cc \
26  Exception.cc FileUtil.cc GetlineIterator.cc Index.cc KernelPCA.cc kNNI.cc \
27  Matrix.cc MatrixWeighted.cc NNI.cc Option.cc \
28  OptionFile.cc OptionInFile.cc OptionOutFile.cc \
29  OptionHelp.cc OptionSwitch.cc \
30  PCA.cc sort_index.cc split.cc \
31  stl_utility.cc SVD.cc TypeInfo.cc utility.cc Vector.cc \
32  VectorBase.cc VectorConstView.cc VectorMutable.cc VectorView.cc \
33  version.cc WeNNI.cc
34
35include_utilitydir = $(includedir)/yat/utility
36
37include_utility_HEADERS = \
38  Alignment.h ColumnStream.h CommandLine.h concept_check.h \
39  Container2DIterator.h DataIterator.h DataWeight.h DataWeightProxy.h \
40  deprecate.h Exception.h FileUtil.h GetlineIterator.h Index.h \
41  iterator_traits.h \
42  KernelPCA.h kNNI.h Matrix.h MatrixWeighted.h merge.h NNI.h \
43  Option.h OptionArg.h OptionFile.h OptionInFile.h OptionOutFile.h \
44  OptionHelp.h OptionSwitch.h \
45  PCA.h \
46  Segment.h SegmentMap.h SegmentSet.h SegmentTree.h \
47  SmartPtr.h sort_index.h split.h StreamRedirect.h \
48  Range.h stl_utility.h StrideIterator.h \
49  SVD.h TypeInfo.h utility.h Vector.h \
50  VectorBase.h VectorConstView.h VectorMutable.h VectorView.h \
51  version.h WeightedIterator.h WeightIterator.h WeNNI.h yat_assert.h
52
53extra_headersdir = $(include_utilitydir)
54extra_headers_DATA = config_public.h
55
56DISTCLEANFILES = doxygen.mk
57
58all-local: doxygen.mk
59
60DOXYGEN_INPUT=$(include_utility_HEADERS) $(extra_headers_DATA)
61
62include $(top_srcdir)/am/doxygen.am
Note: See TracBrowser for help on using the repository browser.