rescue: Rewrite virt-rescue in C.
[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         edit \
22         list-filesystems \
23         list-partitions \
24         make-fs \
25         resize \
26         tar \
27         win-reg
28
29 EXTRA_DIST = \
30         run-locally \
31         $(tools:%=virt-%) \
32         test-virt-*.sh
33
34 CLEANFILES = test.img
35
36 if HAVE_TOOLS
37
38 bin_SCRIPTS = $(tools:%=virt-%)
39
40 # Manual pages and HTML files for the website.
41
42 # XXX Bug in automake?  If you list virt-edit.1 explicitly, then it
43 # builds and installs the man pages.  However if this is removed,
44 # then the man pages are neither built nor installed.
45 man_MANS = virt-edit.1 $(patsubst %,virt-%.1,$(filter-out edit,$(tools)))
46
47 noinst_DATA = $(tools:%=$(top_builddir)/html/virt-%.1.html)
48
49 virt-%.1: virt-%
50         $(top_srcdir)/podwrapper.sh \
51           --man $@ \
52           $<
53
54 $(top_builddir)/html/virt-%.1.html: virt-%
55         $(top_srcdir)/podwrapper.sh \
56           --html $@ \
57           $<
58
59 # Tests.
60
61 random_val := $(shell awk 'BEGIN{srand(); print 1+int(255*rand())}' < /dev/null)
62
63 TESTS_ENVIRONMENT = \
64         MALLOC_PERTURB_=$(random_val) \
65         LD_LIBRARY_PATH=$(top_builddir)/src/.libs \
66         LIBGUESTFS_PATH=$(top_builddir)/appliance \
67         PERL5LIB=$(top_builddir)/perl/blib/lib:$(top_builddir)/perl/blib/arch
68
69 TESTS = test-virt-list-filesystems.sh \
70         test-virt-make-fs.sh \
71         test-virt-resize.sh \
72         test-virt-tar.sh
73
74 endif
75
76 # Make symlinks from virt-foo.pl to virt-foo.  This is just to keep
77 # xgettext happy since it uses the file extension to determine the
78 # implementation language of a file.
79
80 all-local: $(tools:%=virt-%.pl)
81
82 virt-%.pl: virt-%
83         ln -sf $< $@