inspector: Remove inaccurate paragraph from documentation.
[libguestfs.git] / inspector / Makefile.am
1 # libguestfs virt-inspector
2 # Copyright (C) 2009 Red Hat Inc.
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 EXTRA_DIST = \
19         run-inspector-locally \
20         virt-inspector \
21         inspector_generator.ml
22
23 dist_doc_DATA = \
24         virt-inspector.rng \
25         example1.xml example2.xml example3.xml example4.xml
26
27 if HAVE_INSPECTOR
28
29 bin_SCRIPTS = virt-inspector
30 man_MANS = virt-inspector.1
31
32 noinst_DATA = \
33         $(top_builddir)/html/virt-inspector.1.html stamp-inspector-generator
34
35 virt-inspector.1: virt-inspector
36         $(POD2MAN) \
37           --section 1 \
38           -c "Virtualization Support" \
39           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
40           $< > $@-t && mv $@-t $@
41
42 $(top_builddir)/html/virt-inspector.1.html: virt-inspector
43         mkdir -p $(top_builddir)/html
44         cd $(top_builddir) && pod2html \
45           --css 'pod.css' \
46           --title 'virt-inspector, display OS version, kernel, drivers, mount points, applications, etc. in a virtual machine' \
47           --htmldir html \
48           --outfile html/virt-inspector.1.html \
49           inspector/$<
50
51 if HAVE_XMLLINT
52
53 TESTS = example1.xml example2.xml example3.xml example4.xml
54 TESTS_ENVIRONMENT = $(XMLLINT) --noout --relaxng virt-inspector.rng
55
56 endif
57
58 if HAVE_XML_LIGHT
59 stamp-inspector-generator: inspector_generator.ml
60         cd $(top_srcdir) && \
61         ocaml -warn-error A \
62           inspector/inspector_generator.ml
63         touch $@
64 else
65 stamp-inspector-generator:
66         touch $@
67 endif
68
69 endif