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