Ignore launch() error in virt-rescue. (RHBZ#618556)
[libguestfs.git] / tools / Makefile.am
1 # libguestfs virt-* tools
2 # Copyright (C) 2009-2010 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 tools = \
21         cat \
22         df \
23         edit \
24         list-filesystems \
25         list-partitions \
26         ls \
27         make-fs \
28         rescue \
29         resize \
30         tar \
31         win-reg
32
33 EXTRA_DIST = \
34         run-locally \
35         $(tools:%=virt-%) \
36         make-test-img.sh \
37         test-virt-*.sh
38
39 CLEANFILES = test.img
40
41 if HAVE_TOOLS
42
43 bin_SCRIPTS = $(tools:%=virt-%)
44
45 # Manual pages and HTML files for the website.
46
47 # XXX Bug in automake?  If you list virt-cat.1 explicitly, then it
48 # builds and installs the man pages.  However if this is removed,
49 # then the man pages are neither built nor installed.
50 man_MANS = virt-cat.1 $(patsubst %,virt-%.1,$(filter-out cat,$(tools)))
51
52 noinst_DATA = $(tools:%=$(top_builddir)/html/virt-%.1.html)
53
54 virt-%.1: virt-%
55         $(POD2MAN) \
56           --section 1 \
57           -c "Virtualization Support" \
58           --release "$(PACKAGE_NAME)-$(PACKAGE_VERSION)" \
59           $< > $@-t && mv $@-t $@
60
61 $(top_builddir)/html/virt-%.1.html: virt-%
62         mkdir -p $(top_builddir)/html
63         cd $(top_builddir) && pod2html \
64           --css 'pod.css' \
65           --htmldir html \
66           --outfile html/$<.1.html \
67           tools/$<
68
69 # Tests.
70
71 random_val := $(shell awk 'BEGIN{srand(); print 1+int(255*rand())}' < /dev/null)
72
73 TESTS_ENVIRONMENT = \
74         MALLOC_PERTURB_=$(random_val) \
75         LD_LIBRARY_PATH=$(top_builddir)/src/.libs \
76         LIBGUESTFS_PATH=$(top_builddir)/appliance \
77         PERL5LIB=$(top_builddir)/perl/blib/lib:$(top_builddir)/perl/blib/arch
78
79 # Build a standard test image to be used by all these tests.
80 check_DATA = test.img
81 test.img: make-test-img.sh
82         $(TESTS_ENVIRONMENT) $(srcdir)/make-test-img.sh
83
84 TESTS = test-virt-cat.sh \
85         test-virt-df.sh \
86         test-virt-list-filesystems.sh \
87         test-virt-ls.sh \
88         test-virt-make-fs.sh \
89         test-virt-tar.sh
90
91 endif
92
93 # Make symlinks from virt-foo.pl to virt-foo.  This is just to keep
94 # xgettext happy since it uses the file extension to determine the
95 # implementation language of a file.
96
97 all-local: $(tools:%=virt-%.pl)
98
99 virt-%.pl: virt-%
100         ln -sf $< $@