[21] | 1 | ## Process this file with automake to produce Makefile.in |
---|
| 2 | ## |
---|
| 3 | ## $Id: Makefile.am 1159 2010-08-10 13:20:04Z peter $ |
---|
[37] | 4 | |
---|
[978] | 5 | # Copyright (C) 2005 Jari Häkkinen |
---|
| 6 | # Copyright (C) 2006, 2007, 2008, 2009 Jari Häkkinen, Peter Johansson |
---|
[1055] | 7 | # Copyright (C) 2010 Peter Johansson |
---|
[84] | 8 | # |
---|
[687] | 9 | # This file is part of svndigest, http://dev.thep.lu.se/svndigest |
---|
[84] | 10 | # |
---|
[148] | 11 | # svndigest is free software; you can redistribute it and/or modify it |
---|
[84] | 12 | # under the terms of the GNU General Public License as published by |
---|
[693] | 13 | # the Free Software Foundation; either version 3 of the License, or |
---|
[84] | 14 | # (at your option) any later version. |
---|
| 15 | # |
---|
[148] | 16 | # svndigest is distributed in the hope that it will be useful, but |
---|
[84] | 17 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
[148] | 18 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
[84] | 19 | # General Public License for more details. |
---|
| 20 | # |
---|
| 21 | # You should have received a copy of the GNU General Public License |
---|
[693] | 22 | # along with svndigest. If not, see <http://www.gnu.org/licenses/>. |
---|
[84] | 23 | |
---|
[1055] | 24 | bin_PROGRAMS = svndigest svncopyright |
---|
[37] | 25 | |
---|
[1060] | 26 | svndigest_SOURCES = Parameter.cc svndigestParameter.cc svndigest.cc |
---|
| 27 | svncopyright_SOURCES = Parameter.cc svncopyrightParameter.cc svncopyright.cc |
---|
[37] | 28 | |
---|
[1060] | 29 | noinst_HEADERS = Parameter.h svncopyrightParameter.h svndigestParameter.h |
---|
[81] | 30 | |
---|
[907] | 31 | bin_SCRIPTS = svndigest-copy-cache |
---|
| 32 | EXTRA_DIST = svndigest-copy-cache.as |
---|
| 33 | |
---|
[795] | 34 | LDADD = $(top_builddir)/lib/libsvndigest.a \ |
---|
[1119] | 35 | $(top_builddir)/yat/libyat.a $(SVN_LIBS) $(APR_LIBS) $(PLPLOT_LIBS) |
---|
[1159] | 36 | AM_LDFLAGS = $(SVNDIGEST_LDFLAGS) |
---|
[49] | 37 | |
---|
[1159] | 38 | AM_CPPFLAGS = -I$(top_srcdir) $(SVNDIGEST_CPPFLAGS) |
---|
| 39 | AM_CXXFLAGS = $(SVNDIGEST_CXXFLAGS) |
---|
[49] | 40 | |
---|
[1086] | 41 | ##svndigest_LDADD = $(LDADD) $(PLPLOT_LIBS) |
---|
| 42 | ##svndigest_LDFLAGS = $(AM_LDFLAGS) $(PLPLOT_LDFLAGS) |
---|
| 43 | ##svndigest_CPPFLAGS = $(AM_CPPFLAGS) $(PLPLOT_CPPFLAGS) |
---|
[1060] | 44 | |
---|
[907] | 45 | .as.in: |
---|
[911] | 46 | $(AUTOM4TE) -l M4sh -o $@ $(M4SH_OPTIONS) $< |
---|
[907] | 47 | |
---|
| 48 | MAINTAINERCLEANFILES = svndigest-copy-cache.in |
---|
| 49 | |
---|
[49] | 50 | clean-local: |
---|
[139] | 51 | rm -rf *~ |
---|