[2] | 1 | ## Process this file with automake to produce Makefile.in |
---|
| 2 | ## |
---|
| 3 | ## $Id: Makefile.am 1497 2008-09-12 18:30:41Z peter $ |
---|
[4] | 4 | |
---|
[831] | 5 | # Copyright (C) 2003 Daniel Dalevi, Jari Häkkinen, Peter Johansson |
---|
[1275] | 6 | # Copyright (C) 2004 Jari Häkkinen, Peter Johansson, Cecilia Ritz |
---|
[1362] | 7 | # Copyright (C) 2005, 2006, 2007, 2008 Jari Häkkinen, Peter Johansson |
---|
[675] | 8 | # |
---|
[1437] | 9 | # This file is part of the yat library, http://dev.thep.lu.se/yat |
---|
[675] | 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 |
---|
[1486] | 13 | # published by the Free Software Foundation; either version 3 of the |
---|
[675] | 14 | # License, or (at your option) any later version. |
---|
| 15 | # |
---|
| 16 | # The yat 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 |
---|
[1487] | 22 | # along with yat. If not, see <http://www.gnu.org/licenses/>. |
---|
[4] | 23 | |
---|
[1497] | 24 | SUBDIRS = classifier normalizer random regression statistics utility |
---|
[334] | 25 | |
---|
[675] | 26 | lib_LTLIBRARIES = libyat.la |
---|
[334] | 27 | |
---|
[675] | 28 | libyat_la_SOURCES = |
---|
[334] | 29 | |
---|
[1362] | 30 | # Dummy C++ source to cause C++ linking. |
---|
| 31 | nodist_EXTRA_libyat_la_SOURCES = dummy.cc |
---|
| 32 | |
---|
[1097] | 33 | libyat_la_LDFLAGS = -version-info $(YAT_LT_VERSION) |
---|
| 34 | |
---|
[675] | 35 | libyat_la_LIBADD = \ |
---|
[452] | 36 | classifier/libclassifier.la \ |
---|
[1497] | 37 | normalizer/libnormalizer.la \ |
---|
[366] | 38 | random/librandom.la \ |
---|
[682] | 39 | regression/libregression.la \ |
---|
[297] | 40 | statistics/libstatistics.la \ |
---|
[334] | 41 | utility/libutility.la |
---|