summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard W.M. Jones <rjones@redhat.com>2012-03-17 22:11:32 +0000
committerRichard W.M. Jones <rjones@redhat.com>2012-03-17 22:11:32 +0000
commit752bd8f6327eea4cee0fb77442b8250ec29df0ce (patch)
tree1b1d3d175681524c75468397762603b00efb48b6
parent7c2ebad357f996d6f88612cbd7fa2fbd95d78480 (diff)
downloadlibguestfs-752bd8f6327eea4cee0fb77442b8250ec29df0ce.tar.gz
libguestfs-752bd8f6327eea4cee0fb77442b8250ec29df0ce.tar.xz
libguestfs-752bd8f6327eea4cee0fb77442b8250ec29df0ce.zip
Make HTML from libguestfs-test-tool man page.
-rw-r--r--.gitignore2
-rw-r--r--Makefile.am1
-rw-r--r--test-tool/Makefile.am10
3 files changed, 10 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index 1ce38d04..bc71e17d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -152,6 +152,7 @@ html/guestfs-ruby.3.html
html/guestfs-testing.1.html
html/guestmount.1.html
html/libguestfs-make-fixed-appliance.1.html
+html/libguestfs-test-tool.1.html
html/virt-alignment-scan.1.html
html/virt-cat.1.html
html/virt-copy-in.1.html
@@ -401,6 +402,7 @@ tests/regressions/rhbz790721
test-tool/libguestfs-test-tool
test-tool/libguestfs-test-tool.1
test-tool/libguestfs-test-tool-helper
+test-tool/stamp-libguestfs-test-tool.pod
tools/test.img
tools/virt-*.1
tools/virt-*.pl
diff --git a/Makefile.am b/Makefile.am
index 3aa9cfd4..f90a3ce7 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -188,6 +188,7 @@ HTMLFILES = \
html/guestfish.1.html \
html/guestmount.1.html \
html/libguestfs-make-fixed-appliance.1.html \
+ html/libguestfs-test-tool.1.html \
html/virt-alignment-scan.1.html \
html/virt-cat.1.html \
html/virt-copy-in.1.html \
diff --git a/test-tool/Makefile.am b/test-tool/Makefile.am
index d20dfc7a..a418c565 100644
--- a/test-tool/Makefile.am
+++ b/test-tool/Makefile.am
@@ -19,7 +19,7 @@ include $(top_srcdir)/subdir-rules.mk
EXTRA_DIST = libguestfs-test-tool.pod
-CLEANFILES =
+CLEANFILES = libguestfs-test-tool.1 stamp-libguestfs-test-tool.pod
bin_PROGRAMS = libguestfs-test-tool
man_MANS = libguestfs-test-tool.1
@@ -33,7 +33,11 @@ libguestfs_test_tool_CFLAGS = \
libguestfs_test_tool_LDADD = \
$(top_builddir)/src/libguestfs.la
-libguestfs-test-tool.1: libguestfs-test-tool.pod
+libguestfs-test-tool.1 $(top_builddir)/html/libguestfs-test-tool.1.html: stamp-libguestfs-test-tool.pod
+
+stamp-libguestfs-test-tool.pod: libguestfs-test-tool.pod
$(top_builddir)/podwrapper.sh \
- --man $@ \
+ --man libguestfs-test-tool.1 \
+ --html $(top_builddir)/html/libguestfs-test-tool.1.html \
$<
+ touch $@