5e6828f81201e5c1da121425a438a66221d15a8c
[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         example-debian.xml \
22         example-fedora.xml \
23         example-ubuntu.xml \
24         example-windows.xml
25
26 EXTRA_DIST = \
27         run-inspector-locally \
28         virt-inspector
29
30 docdir = @docdir@
31 dist_doc_DATA = \
32         virt-inspector.rng \
33         $(EXAMPLE_XML)
34
35 if HAVE_INSPECTOR
36
37 bin_SCRIPTS = virt-inspector
38 man_MANS = virt-inspector.1
39
40 noinst_DATA = \
41         $(top_builddir)/html/virt-inspector.1.html
42
43 virt-inspector.1: virt-inspector
44         $(POD2MAN) \
45           --section 1 \
46           -c "Virtualization Support" \
47           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
48           $< > $@-t && mv $@-t $@
49
50 $(top_builddir)/html/virt-inspector.1.html: virt-inspector
51         mkdir -p $(top_builddir)/html
52         cd $(top_builddir) && pod2html \
53           --css 'pod.css' \
54           --title 'virt-inspector, display OS version, kernel, drivers, mount points, applications, etc. in a virtual machine' \
55           --htmldir html \
56           --outfile html/virt-inspector.1.html \
57           inspector/$<
58
59 if HAVE_XMLLINT
60
61 TESTS = $(EXAMPLE_XML)
62 TESTS_ENVIRONMENT = $(XMLLINT) --noout --relaxng virt-inspector.rng
63
64 endif
65
66 # These rules require virt-inspector so there is no good time that we
67 # can run them.  Instead you can run them by hand.
68
69 example-debian.xml:
70         ./run-inspector-locally ../images/debian.img > $@
71 example-fedora.xml:
72         ./run-inspector-locally ../images/fedora.img > $@
73 example-ubuntu.xml:
74         ./run-inspector-locally ../images/ubuntu.img > $@
75 example-windows.xml:
76         ./run-inspector-locally ../images/windows.img | fgrep -v '<uuid>' > $@
77
78 endif
79
80 # Make symlink from virt-inspector.pl to virt-inspector.  This is just
81 # to keep xgettext happy since it uses the file extension to determine
82 # the implementation language of a file.
83
84 all-local: virt-inspector.pl
85
86 virt-inspector.pl: virt-inspector
87         ln -sf $< $@