tests: Split images -> tests/data + tests/guests
[libguestfs.git] / inspector / Makefile.am
1 # libguestfs virt-inspector
2 # Copyright (C) 2009-2011 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 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         example-debian-netinst-cd.xml \
26         example-fedora-dvd.xml \
27         example-fedora-netinst-cd.xml \
28         example-rhel-6-dvd.xml \
29         example-rhel-6-netinst-cd.xml \
30         example-ubuntu-live-cd.xml \
31         example-windows-2003-x64-cd.xml \
32         example-windows-2003-x86-cd.xml \
33         example-windows-xp-cd.xml
34
35 EXTRA_DIST = \
36         virt-inspector.pod
37
38 CLEANFILES = stamp-virt-inspector.pod
39
40 docdir = @docdir@
41 dist_doc_DATA = \
42         virt-inspector.rng \
43         $(EXAMPLE_XML)
44
45 if HAVE_LIBXML2
46
47 bin_PROGRAMS = virt-inspector
48
49 SHARED_SOURCE_FILES = \
50         ../fish/config.c \
51         ../fish/inspect.c \
52         ../fish/keys.c \
53         ../fish/options.h \
54         ../fish/options.c \
55         ../fish/virt.c
56
57 virt_inspector_SOURCES = \
58         $(SHARED_SOURCE_FILES) \
59         virt-inspector.c
60
61 virt_inspector_CFLAGS = \
62         -DGUESTFS_WARN_DEPRECATED=1 \
63         -I$(top_srcdir)/src -I$(top_builddir)/src \
64         -I$(top_srcdir)/fish \
65         -I$(srcdir)/../gnulib/lib -I../gnulib/lib \
66         -DLOCALEBASEDIR=\""$(datadir)/locale"\" \
67         $(LIBXML2_CFLAGS) \
68         $(LIBCONFIG_CFLAGS) \
69         $(WARN_CFLAGS) $(WERROR_CFLAGS)
70
71 virt_inspector_LDADD = \
72         $(LIBCONFIG_LIBS) \
73         $(top_builddir)/src/libguestfs.la \
74         $(LIBXML2_LIBS) \
75         ../gnulib/lib/libgnu.la
76
77 # Manual pages and HTML files for the website.
78 man_MANS = virt-inspector.1
79 noinst_DATA = $(top_builddir)/html/virt-inspector.1.html
80
81 virt-inspector.1 $(top_builddir)/html/virt-inspector.1.html: stamp-virt-inspector.pod
82
83 stamp-virt-inspector.pod: virt-inspector.pod
84         $(top_builddir)/podwrapper.sh \
85           --man virt-inspector.1 \
86           --html $(top_builddir)/html/virt-inspector.1.html \
87           $<
88         touch $@
89
90 if HAVE_XMLLINT
91
92 TESTS = $(EXAMPLE_XML)
93 TESTS_ENVIRONMENT = $(XMLLINT) --noout --relaxng $(srcdir)/virt-inspector.rng
94
95 endif
96
97 endif
98
99 # These rules require virt-inspector so there is no good time that we
100 # can run them.  Instead you can run them by hand.
101
102 example-debian.xml:
103         rm -f $@ $@-t
104         ../run $(builddir)/virt-inspector ../tests/guests/debian.img > $@-t
105         mv $@-t $@
106 example-fedora.xml:
107         rm -f $@ $@-t
108         ../run $(builddir)/virt-inspector ../tests/guests/fedora.img > $@-t
109         mv $@-t $@
110 example-ubuntu.xml:
111         rm -f $@ $@-t
112         ../run $(builddir)/virt-inspector ../tests/guests/ubuntu.img > $@-t
113         mv $@-t $@
114 example-windows.xml:
115         rm -f $@ $@-t
116         ../run $(builddir)/virt-inspector ../tests/guests/windows.img | \
117             fgrep -v '<uuid>' > $@-t
118         mv $@-t $@