1 | ## Process this file with automake to produce Makefile.in |
---|
2 | ## |
---|
3 | ## $Id: Makefile.am 1297 2010-11-14 17:43:16Z peter $ |
---|
4 | |
---|
5 | # Copyright (C) 2008, 2009, 2010 Peter Johansson |
---|
6 | # |
---|
7 | # This file is part of svndigest, http://dev.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 | |
---|
22 | dist_man1_MANS = |
---|
23 | dist_man1_MANS += $(srcdir)/svncopyright.1 |
---|
24 | dist_man1_MANS += $(srcdir)/svndigest.1 |
---|
25 | dist_man1_MANS += $(srcdir)/svndigest-copy-cache.1 |
---|
26 | |
---|
27 | EXTRA_DIST = svndigest.x |
---|
28 | |
---|
29 | MAINTAINERCLEANFILES = $(dist_man1_MANS) |
---|
30 | |
---|
31 | # we would like to depend on svndigest binary, but since svndigest.1 |
---|
32 | # is distributed it is recommended to depend on only distributed files |
---|
33 | # (see automake manual 27.5). |
---|
34 | $(srcdir)/svndigest.1: $(top_srcdir)/configure $(srcdir)/Makefile.in \ |
---|
35 | $(srcdir)/svndigest.x $(top_srcdir)/bin/svndigestParameter.cc |
---|
36 | @$(HELP2MAN) --no-info -o $@ \ |
---|
37 | --include $(srcdir)/svndigest.x \ |
---|
38 | --version-option="--no-verbose --version" \ |
---|
39 | $(top_builddir)/bin/svndigest$(EXEEXT) |
---|
40 | |
---|
41 | $(srcdir)/svncopyright.1: $(top_srcdir)/configure $(srcdir)/Makefile.in \ |
---|
42 | $(srcdir)/svndigest.x $(top_srcdir)/bin/svncopyrightParameter.cc |
---|
43 | @$(HELP2MAN) --no-info -o $@ \ |
---|
44 | --include $(srcdir)/svndigest.x \ |
---|
45 | --version-option="--no-verbose --version" \ |
---|
46 | $(top_builddir)/bin/svncopyright$(EXEEXT) |
---|
47 | |
---|
48 | $(srcdir)/svndigest-copy-cache.1: $(top_srcdir)/configure $(srcdir)/Makefile.in \ |
---|
49 | $(srcdir)/svndigest.x $(top_srcdir)/bin/svndigest-copy-cache.cc |
---|
50 | @$(HELP2MAN) --no-info -o $@ \ |
---|
51 | --include $(srcdir)/svndigest.x \ |
---|
52 | --version-option="--no-verbose --version" \ |
---|
53 | $(top_builddir)/bin/svndigest-copy-cache |
---|
54 | |
---|