source: trunk/yat/statistics/Makefile.am @ 926

Last change on this file since 926 was 926, checked in by Markus Ringnér, 15 years ago

Fixing minor mistakes so things gets installed with make install

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.9 KB
Line 
1## Process this file with automake to produce Makefile.in
2##
3## $Id: Makefile.am 926 2007-10-03 06:11:31Z markus $
4
5# Copyright (C) 2005 Jari Häkkinen, Peter Johansson
6# Copyright (C) 2006 Jari Häkkinen, Markus Ringnér, Peter Johansson
7# Copyright (C) 2007 Jari Häkkinen, Peter Johansson
8#
9# This file is part of the yat library, http://trac.thep.lu.se/trac/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 2 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 this program; if not, write to the Free Software
23# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
24# 02111-1307, USA.
25
26AM_CPPFLAGS = -I@top_srcdir@
27
28noinst_LTLIBRARIES = libstatistics.la
29libstatistics_la_SOURCES = AUC.cc Averager.cc AveragerPair.cc \
30  AveragerWeighted.cc AveragerPairWeighted.cc Distance.cc \
31  Euclidean.cc Fisher.cc FoldChange.cc Histogram.cc Pearson.cc \
32  PearsonCorrelation.cc PearsonDistance.cc ROC.cc \
33  SAMScore.cc Score.cc SNRScore.cc tScore.cc tTest.cc \
34  utility.cc VectorFunction.cc WilcoxonFoldChange.cc
35
36include_statisticsdir = $(includedir)/yat/statistics
37
38include_statistics_HEADERS = AUC.h Averager.h AveragerPair.h \
39  AveragerWeighted.h AveragerPairWeighted.h Distance.h Euclidean.h \
40  euclidean_vector_distance.h Fisher.h \
41  FoldChange.h Histogram.h Pearson.h PearsonCorrelation.h \
42  PearsonDistance.h pearson_vector_distance.h ROC.h \
43  SAMScore.h Score.h SNRScore.h tScore.h tTest.h \
44  utility.h vector_distance.h VectorFunction.h WilcoxonFoldChange.h
Note: See TracBrowser for help on using the repository browser.