tools: Sectional header for manpages in Makefile.am
[libguestfs.git] / tools / Makefile.am
1 # libguestfs virt-* tools
2 # Copyright (C) 2009 Red Hat Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 include $(top_srcdir)/subdir-rules.mk
19
20 tools = \
21         cat \
22         df \
23         edit \
24         list-filesystems \
25         list-partitions \
26         ls \
27         rescue \
28         resize \
29         tar \
30         win-reg
31
32 EXTRA_DIST = \
33         run-locally \
34         $(tools:%=virt-%)
35
36 if HAVE_TOOLS
37
38 bin_SCRIPTS = $(tools:%=virt-%)
39
40 # Manual pages and HTML files for the website.
41
42 # XXX Bug in automake?  If you list virt-cat.1 explicitly, then it
43 # builds and installs the man pages.  However if this is removed,
44 # then the man pages are neither built nor installed.
45 man_MANS = virt-cat.1 $(patsubst %,virt-%.1,$(filter-out cat,$(tools)))
46
47 noinst_DATA = $(tools:%=$(top_builddir)/html/virt-%.1.html)
48
49 virt-%.1: virt-%
50         $(POD2MAN) \
51           --section 1 \
52           -c "Virtualization Support" \
53           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
54           $< > $@-t && mv $@-t $@
55
56 $(top_builddir)/html/virt-%.1.html: virt-%
57         mkdir -p $(top_builddir)/html
58         cd $(top_builddir) && pod2html \
59           --css 'pod.css' \
60           --htmldir html \
61           --outfile html/$<.1.html \
62           tools/$<
63
64 endif