source: trunk/yat/Makefile.am @ 2124

Last change on this file since 2124 was 2121, checked in by Peter, 13 years ago

updating copyrights to uniform encoding in them.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.7 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 2121 2009-12-13 16:17:07Z peter $
4
5# Copyright (C) 2003 Daniel Dalevi, Jari Häkkinen, Peter Johansson
6# Copyright (C) 2004 Jari Häkkinen, Peter Johansson, Cecilia Ritz
7# Copyright (C) 2005, 2006, 2007, 2008 Jari Häkkinen, Peter Johansson
8# Copyright (C) 2009 Peter Johansson
9#
10# This file is part of the yat library, http://dev.thep.lu.se/yat
11#
12# The yat library is free software; you can redistribute it and/or
13# modify it under the terms of the GNU General Public License as
14# published by the Free Software Foundation; either version 3 of the
15# License, or (at your option) any later version.
16#
17# The yat library is distributed in the hope that it will be useful,
18# but WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20# General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with yat. If not, see <http://www.gnu.org/licenses/>.
24
25SUBDIRS = classifier normalizer random regression statistics utility
26
27lib_LTLIBRARIES = libyat.la
28
29libyat_la_SOURCES =
30
31# Dummy C++ source to cause C++ linking.
32nodist_EXTRA_libyat_la_SOURCES = dummy.cc
33
34libyat_la_LDFLAGS = -version-info $(YAT_LT_VERSION)
35
36libyat_la_LIBADD = \
37  classifier/libclassifier.la \
38  normalizer/libnormalizer.la \
39  random/librandom.la \
40  regression/libregression.la \
41  statistics/libstatistics.la \
42  utility/libutility.la \
43  $(YAT_PRIMARY_LIBS) $(LIBM)
44
45.PHONY: doxygen_mk
46
47html-local:doxygen_mk
48dvi-local:doxygen_mk
49ps-local:doxygen_mk
50pdf-local:doxygen_mk
51
52doxygen_mk:
53  @for subdir in $(SUBDIRS); do \
54    (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) doxygen.mk) \
55  done;
Note: See TracBrowser for help on using the repository browser.