1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 907 2009-11-29 15:33:19Z peter $ |
---|
4 | |
---|
5 | # Copyright (C) 2005 Jari Häkkinen |
---|
6 | # Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson |
---|
7 | # Copyright (C) 2009 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 |
---|
25 | |
---|
26 | svndigest_SOURCES = Parameter.cc svndigest.cc |
---|
27 | |
---|
28 | noinst_HEADERS = Parameter.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)/lib/yat/libyat.a $(SVN_LIBS) $(APR_LIBS) $(PLPLOT_LIBS) |
---|
35 | AM_LDFLAGS = $(APR_LDFLAGS) $(SVN_LDFLAGS) $(PLPLOT_LDFLAGS) |
---|
36 | |
---|
37 | AM_CPPFLAGS = -I$(top_srcdir)/lib $(DEFAULT_CPPFLAGS) \ |
---|
38 | $(APR_CPPFLAGS) $(SVN_CPPFLAGS) $(PLPLOT_CPPFLAGS) |
---|
39 | AM_CXXFLAGS = $(DEFAULT_CXXFLAGS) |
---|
40 | |
---|
41 | .as.in: |
---|
42 | $(AUTOM4TE) -l M4sh -o $@ -m 0444 $< |
---|
43 | |
---|
44 | MAINTAINERCLEANFILES = svndigest-copy-cache.in |
---|
45 | |
---|
46 | clean-local: |
---|
47 | rm -rf *~ |
---|