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