inspector: Add tests for RELAX NG schema.
[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         virt-inspector.rng \
22         example1.xml example2.xml example3.xml example4.xml
23
24 if HAVE_INSPECTOR
25
26 bin_SCRIPTS = virt-inspector
27 man_MANS = virt-inspector.1
28 dist_doc_DATA = \
29         virt-inspector.rng \
30         example1.xml example2.xml example3.xml example4.xml
31
32 noinst_DATA = $(top_builddir)/html/virt-inspector.1.html
33
34 virt-inspector.1: virt-inspector
35         $(POD2MAN) \
36           --section 1 \
37           -c "Virtualization Support" \
38           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
39           $< > $@-t && mv $@-t $@
40
41 $(top_builddir)/html/virt-inspector.1.html: virt-inspector
42         mkdir -p $(top_builddir)/html
43         cd $(top_builddir) && pod2html \
44           --css 'pod.css' \
45           --title 'virt-inspector, display OS version, kernel, drivers, mount points, applications, etc. in a virtual machine' \
46           --htmldir html \
47           --outfile html/virt-inspector.1.html \
48           inspector/$<
49
50 if HAVE_XMLLINT
51
52 TESTS = example1.xml example2.xml example3.xml example4.xml
53 TESTS_ENVIRONMENT = $(XMLLINT) --noout --relaxng virt-inspector.rng
54
55 endif
56
57 endif