1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 1267 2010-11-02 03:56:19Z peter $ |
---|
4 | |
---|
5 | # Copyright (C) 2005 Jari Häkkinen |
---|
6 | # Copyright (C) 2006, 2007, 2008, 2009, 2010 Jari Häkkinen, Peter Johansson |
---|
7 | # |
---|
8 | # This file is part of svndigest, http://dev.thep.lu.se/svndigest |
---|
9 | # |
---|
10 | # svndigest is free software; you can redistribute it and/or modify it |
---|
11 | # under the terms of the GNU General Public License as published by |
---|
12 | # the Free Software Foundation; either version 3 of the License, or |
---|
13 | # (at your option) any later version. |
---|
14 | # |
---|
15 | # svndigest is distributed in the hope that it will be useful, but |
---|
16 | # 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 svndigest. If not, see <http://www.gnu.org/licenses/>. |
---|
22 | |
---|
23 | bin_PROGRAMS = svndigest svncopyright |
---|
24 | |
---|
25 | svndigest_SOURCES = Parameter.cc svndigestParameter.cc svndigest.cc |
---|
26 | svncopyright_SOURCES = Parameter.cc svncopyrightParameter.cc svncopyright.cc |
---|
27 | |
---|
28 | noinst_HEADERS = Parameter.h svncopyrightParameter.h svndigestParameter.h |
---|
29 | |
---|
30 | bin_SCRIPTS = svndigest-copy-cache |
---|
31 | EXTRA_DIST = svndigest-copy-cache.as |
---|
32 | |
---|
33 | LDADD = $(top_builddir)/lib/libsvndigest.a \ |
---|
34 | $(top_builddir)/yat/libyat.a $(SVN_LIBS) $(APR_LIBS) $(PLPLOT_LIBS) |
---|
35 | AM_LDFLAGS = $(SVNDIGEST_LDFLAGS) |
---|
36 | |
---|
37 | AM_CPPFLAGS = -I$(top_srcdir) $(SVNDIGEST_CPPFLAGS) |
---|
38 | AM_CXXFLAGS = $(SVNDIGEST_CXXFLAGS) |
---|
39 | |
---|
40 | ##svndigest_LDADD = $(LDADD) $(PLPLOT_LIBS) |
---|
41 | ##svndigest_LDFLAGS = $(AM_LDFLAGS) $(PLPLOT_LDFLAGS) |
---|
42 | ##svndigest_CPPFLAGS = $(AM_CPPFLAGS) $(PLPLOT_CPPFLAGS) |
---|
43 | |
---|
44 | .as.in: |
---|
45 | $(AUTOM4TE) -l M4sh -o $@ $(M4SH_OPTIONS) $< |
---|
46 | |
---|
47 | MAINTAINERCLEANFILES = svndigest-copy-cache.in |
---|
48 | |
---|
49 | clean-local: |
---|
50 | rm -rf *~ |
---|