Make HTML from libguestfs-test-tool man page.

This commit is contained in:
Richard W.M. Jones
2012-03-17 22:11:32 +00:00
parent 7c2ebad357
commit 752bd8f632
3 changed files with 10 additions and 3 deletions

2
.gitignore vendored
View File

@@ -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

View File

@@ -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 \

View File

@@ -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 $@