inspector: Rewrite virt-inspector (RHBZ#642930).
[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 include $(top_srcdir)/subdir-rules.mk
19
20 EXAMPLE_XML = \
21         example1.xml example2.xml example3.xml \
22         example4.xml example5.xml example6.xml
23
24 EXTRA_DIST = \
25         run-inspector-locally \
26         virt-inspector
27
28 docdir = @docdir@
29 dist_doc_DATA = \
30         virt-inspector.rng \
31         $(EXAMPLE_XML)
32
33 if HAVE_INSPECTOR
34
35 bin_SCRIPTS = virt-inspector
36 man_MANS = virt-inspector.1
37
38 noinst_DATA = \
39         $(top_builddir)/html/virt-inspector.1.html
40
41 virt-inspector.1: virt-inspector
42         $(POD2MAN) \
43           --section 1 \
44           -c "Virtualization Support" \
45           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
46           $< > $@-t && mv $@-t $@
47
48 $(top_builddir)/html/virt-inspector.1.html: virt-inspector
49         mkdir -p $(top_builddir)/html
50         cd $(top_builddir) && pod2html \
51           --css 'pod.css' \
52           --title 'virt-inspector, display OS version, kernel, drivers, mount points, applications, etc. in a virtual machine' \
53           --htmldir html \
54           --outfile html/virt-inspector.1.html \
55           inspector/$<
56
57 if HAVE_XMLLINT
58
59 TESTS = $(EXAMPLE_XML)
60 TESTS_ENVIRONMENT = $(XMLLINT) --noout --relaxng virt-inspector.rng
61
62 endif
63
64 endif
65
66 # Make symlink from virt-inspector.pl to virt-inspector.  This is just
67 # to keep xgettext happy since it uses the file extension to determine
68 # the implementation language of a file.
69
70 all-local: virt-inspector.pl
71
72 virt-inspector.pl: virt-inspector
73         ln -sf $< $@