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