[21] | 1 | ## Process this file with automake to produce Makefile.in |
---|
| 2 | ## |
---|
| 3 | ## $Id: Makefile.am 858 2009-11-19 19:45:31Z jari $ |
---|
[37] | 4 | |
---|
[408] | 5 | # Copyright (C) 2005 Jari Häkkinen |
---|
[847] | 6 | # Copyright (C) 2006, 2007, 2008 Jari Häkkinen, Peter Johansson |
---|
| 7 | # Copyright (C) 2009 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 | |
---|
[148] | 24 | bin_PROGRAMS = svndigest |
---|
[37] | 25 | |
---|
[148] | 26 | svndigest_SOURCES = Parameter.cc svndigest.cc |
---|
[37] | 27 | |
---|
[100] | 28 | noinst_HEADERS = Parameter.h |
---|
[81] | 29 | |
---|
[795] | 30 | LDADD = $(top_builddir)/lib/libsvndigest.a \ |
---|
| 31 | $(top_builddir)/lib/yat/libyat.a $(SVNDIGEST_LIBS) |
---|
[858] | 32 | AM_LDFLAGS = $(SVNDIGEST_LDFLAGS) $(PLPLOT_LDFLAGS) |
---|
[49] | 33 | |
---|
[696] | 34 | AM_CPPFLAGS = -I$(top_srcdir)/lib $(SVNDIGEST_CPPFLAGS) |
---|
[640] | 35 | AM_CXXFLAGS = $(SVNDIGEST_CXXFLAGS) |
---|
[49] | 36 | |
---|
[640] | 37 | |
---|
[49] | 38 | clean-local: |
---|
[139] | 39 | rm -rf *~ |
---|