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