1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 2874 2012-11-13 11:27:42Z 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, 2010, 2012 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 | |
---|
25 | lib_LTLIBRARIES = yat/libyat.la |
---|
26 | |
---|
27 | yat_libyat_la_SOURCES = |
---|
28 | |
---|
29 | yat_libyat_la_LDFLAGS = -version-info $(YAT_LT_VERSION) $(AM_LDFLAGS) |
---|
30 | |
---|
31 | yat_libyat_la_LIBADD = \ |
---|
32 | $(YAT_PRIMARY_LIBS) $(LIBM) |
---|
33 | |
---|
34 | noinst_LTLIBRARIES = |
---|
35 | nobase_include_HEADERS = |
---|
36 | |
---|
37 | include yat/classifier/Makefile.am |
---|
38 | include yat/normalizer/Makefile.am |
---|
39 | include yat/omic/Makefile.am |
---|
40 | include yat/random/Makefile.am |
---|
41 | include yat/regression/Makefile.am |
---|
42 | include yat/statistics/Makefile.am |
---|
43 | include yat/utility/Makefile.am |
---|