diff options
author | Richard W.M. Jones <rjones@redhat.com> | 2011-11-20 13:38:28 +0000 |
---|---|---|
committer | Richard W.M. Jones <rjones@redhat.com> | 2011-11-22 14:44:53 +0000 |
commit | 14b895629d79d4caef2667397775773c748b5e45 (patch) | |
tree | 6bfbfd3728f42d8c16a0739419867be3ac5fb7a5 /examples/Makefile.am | |
parent | d722875817e5f9ab75be419cb863e671228c18cf (diff) | |
download | libguestfs-14b895629d79d4caef2667397775773c748b5e45.tar.gz libguestfs-14b895629d79d4caef2667397775773c748b5e45.tar.xz libguestfs-14b895629d79d4caef2667397775773c748b5e45.zip |
Add guestfs-testing(1) man page.
This contains suggested manual tests that users can run.
(cherry picked from commit a3b24296810d98e47552c6838dcd6ab6845aba03)
Diffstat (limited to 'examples/Makefile.am')
-rw-r--r-- | examples/Makefile.am | 22 |
1 files changed, 18 insertions, 4 deletions
diff --git a/examples/Makefile.am b/examples/Makefile.am index 8d6accd8..d898c99c 100644 --- a/examples/Makefile.am +++ b/examples/Makefile.am @@ -18,11 +18,13 @@ EXTRA_DIST = \ LICENSE \ guestfs-examples.pod \ - guestfs-recipes.pod + guestfs-recipes.pod \ + guestfs-testing.pod CLEANFILES = \ stamp-guestfs-examples.pod \ - stamp-guestfs-recipes.pod + stamp-guestfs-recipes.pod \ + stamp-guestfs-testing.pod noinst_PROGRAMS = create_disk inspect_vm if HAVE_HIVEX @@ -57,10 +59,12 @@ virt_dhcp_address_LDADD = \ man_MANS = \ guestfs-examples.3 \ - guestfs-recipes.1 + guestfs-recipes.1 \ + guestfs-testing.1 noinst_DATA = \ $(top_builddir)/html/guestfs-examples.3.html \ - $(top_builddir)/html/guestfs-recipes.1.html + $(top_builddir)/html/guestfs-recipes.1.html \ + $(top_builddir)/html/guestfs-testing.1.html guestfs-examples.3 $(top_builddir)/html/guestfs-examples.3.html: stamp-guestfs-examples.pod @@ -83,3 +87,13 @@ stamp-guestfs-recipes.pod: guestfs-recipes.pod --html $(top_builddir)/html/guestfs-recipes.1.html \ $< touch $@ + +guestfs-testing.1 $(top_builddir)/html/guestfs-testing.1.html: stamp-guestfs-testing.pod + +stamp-guestfs-testing.pod: guestfs-testing.pod + $(top_builddir)/podwrapper.sh \ + --section 1 \ + --man guestfs-testing.1 \ + --html $(top_builddir)/html/guestfs-testing.1.html \ + $< + touch $@ |