From: Richard Jones Date: Thu, 29 Oct 2009 20:33:27 +0000 (+0000) Subject: Add HTML documentation to website. X-Git-Tag: 1.0.77~18 X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=commitdiff_plain;h=2ec5ff5d3436989882d4284690606989e71cef96;ds=sidebyside Add HTML documentation to website. --- diff --git a/.gitignore b/.gitignore index 06e9850..ffa9764 100644 --- a/.gitignore +++ b/.gitignore @@ -72,6 +72,9 @@ hivex/hivexget hivex/hivexml html/guestfish.1.html html/guestfs.3.html +html/hivex.3.html +html/hivexget.1.html +html/hivexml.1.html html/recipes.html html/virt-cat.1.html html/virt-df.1.html diff --git a/hivex/Makefile.am b/hivex/Makefile.am index 574bcac..b73aa2f 100644 --- a/hivex/Makefile.am +++ b/hivex/Makefile.am @@ -69,3 +69,32 @@ hivexget.1: hivexget.pod --name "hivexget" \ --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \ $< > $@-t; mv $@-t $@ + +noinst_DATA = \ + $(top_builddir)/html/hivex.3.html \ + $(top_builddir)/html/hivexml.1.html \ + $(top_builddir)/html/hivexget.1.html + +$(top_builddir)/html/hivex.3.html: hivex.pod + mkdir -p $(top_builddir)/html + cd $(top_builddir) && pod2html \ + --css 'pod.css' \ + --htmldir html \ + --outfile html/hivex.3.html \ + hivex/hivex.pod + +$(top_builddir)/html/hivexml.1.html: hivexml.pod + mkdir -p $(top_builddir)/html + cd $(top_builddir) && pod2html \ + --css 'pod.css' \ + --htmldir html \ + --outfile html/hivexml.1.html \ + hivex/hivexml.pod + +$(top_builddir)/html/hivexget.1.html: hivexget.pod + mkdir -p $(top_builddir)/html + cd $(top_builddir) && pod2html \ + --css 'pod.css' \ + --htmldir html \ + --outfile html/hivexget.1.html \ + hivex/hivexget.pod