[724] | 1 | ## Process this file with automake to produce Makefile.in |
---|
| 2 | ## |
---|
| 3 | ## $Id: Makefile.am 1056 2010-04-23 06:35:20Z peter $ |
---|
| 4 | |
---|
[847] | 5 | # Copyright (C) 2008, 2009 Peter Johansson |
---|
[724] | 6 | # |
---|
| 7 | # This file is part of svndigest, http://trac.thep.lu.se/trac/svndigest |
---|
| 8 | # |
---|
| 9 | # svndigest is free software; you can redistribute it and/or modify it |
---|
| 10 | # under the terms of the GNU General Public License as published by |
---|
| 11 | # the Free Software Foundation; either version 3 of the License, or |
---|
| 12 | # (at your option) any later version. |
---|
| 13 | # |
---|
| 14 | # svndigest is distributed in the hope that it will be useful, but |
---|
| 15 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 16 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
---|
| 17 | # General Public License for more details. |
---|
| 18 | # |
---|
| 19 | # You should have received a copy of the GNU General Public License |
---|
| 20 | # along with svndigest. If not, see <http://www.gnu.org/licenses/>. |
---|
| 21 | |
---|
[732] | 22 | dist_man1_MANS = $(srcdir)/svndigest.1 |
---|
[724] | 23 | |
---|
[805] | 24 | EXTRA_DIST = svndigest.x |
---|
| 25 | |
---|
[724] | 26 | MAINTAINERCLEANFILES = $(dist_man1_MANS) |
---|
| 27 | |
---|
| 28 | # we would like to depend on svndigest binary, but since svndigest.1 |
---|
| 29 | # is distributed it is recommended to depend on only distributed files |
---|
| 30 | # (see automake manual 27.5). |
---|
[805] | 31 | $(srcdir)/svndigest.1: $(top_srcdir)/configure $(srcdir)/Makefile.in \ |
---|
| 32 | $(srcdir)/svndigest.x |
---|
[724] | 33 | @$(HELP2MAN) --no-info -o $@ \ |
---|
[805] | 34 | --include $(srcdir)/svndigest.x \ |
---|
[724] | 35 | --version-option="--no-verbose --version" \ |
---|
| 36 | $(top_builddir)/bin/svndigest$(EXEEXT) |
---|