New tools: virt-resize and virt-list-partitions.
[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 = cat df edit list-filesystems list-partitions ls rescue resize tar win-reg
21
22 EXTRA_DIST = \
23         run-locally \
24         $(tools:%=virt-%)
25
26 if HAVE_TOOLS
27
28 bin_SCRIPTS = $(tools:%=virt-%)
29
30 # XXX Bug in automake?  If you list virt-cat.1 explicitly, then it
31 # builds and installs the man pages.  However if this is removed,
32 # then the man pages are neither built nor installed.
33 man_MANS = virt-cat.1 $(patsubst %,virt-%.1,$(filter-out cat,$(tools)))
34
35 noinst_DATA = $(tools:%=$(top_builddir)/html/virt-%.1.html)
36
37 virt-%.1: virt-%
38         $(POD2MAN) \
39           --section 1 \
40           -c "Virtualization Support" \
41           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
42           $< > $@-t && mv $@-t $@
43
44 $(top_builddir)/html/virt-%.1.html: virt-%
45         mkdir -p $(top_builddir)/html
46         cd $(top_builddir) && pod2html \
47           --css 'pod.css' \
48           --htmldir html \
49           --outfile html/$<.1.html \
50           tools/$<
51
52 endif