Build virt-inspector HTML for the website.

This commit is contained in:
Richard Jones
2009-04-28 17:37:59 +01:00
parent fd99b96c97
commit 1957e9ed34
3 changed files with 14 additions and 1 deletions

1
.gitignore vendored
View File

@@ -40,6 +40,7 @@ guestfs.3
html/guestfish.1.html
html/guestfs.3.html
html/recipes.html
html/virt-inspector.1.html
initramfs
initramfs.timestamp
initramfs.*.img

View File

@@ -151,7 +151,9 @@ html/recipes.html: $(wildcard recipes/*.sh) $(wildcard recipes/*.html) $(wildcar
sh make-recipes.sh recipes/*.sh > $@-t
mv $@-t $@
website: html/guestfs.3.html html/guestfish.1.html html/recipes.html
website: html/guestfs.3.html html/guestfish.1.html \
html/virt-inspector.1.html \
html/recipes.html
cp $^ html/pod.css html/recipes.css \
$(HOME)/d/redhat/et-website/libguestfs/

View File

@@ -25,6 +25,8 @@ if HAVE_INSPECTOR
man_MANS = virt-inspector.1
noinst_DATA = ../html/virt-inspector.1.html
virt-inspector.1: virt-inspector.pl
$(POD2MAN) \
--section 1 \
@@ -32,6 +34,14 @@ virt-inspector.1: virt-inspector.pl
--release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
$< > $@
../html/virt-inspector.1.html: virt-inspector.pl
cd .. && pod2html \
--css 'pod.css' \
--title 'virt-inspector, display OS version, kernel, drivers, mount points, applications, etc. in a virtual machine' \
--htmldir html \
--outfile html/virt-inspector.1.html \
inspector/$<
install-data-hook:
mkdir -p $(DESTDIR)$(bindir)
install -m 0755 virt-inspector.pl $(DESTDIR)$(bindir)/virt-inspector