inspect: Abstract the wrapper that sets up Augeas.
[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         ls \
26         make-fs \
27         rescue \
28         resize \
29         tar \
30         win-reg
31
32 EXTRA_DIST = \
33         run-locally \
34         $(tools:%=virt-%) \
35         test-virt-*.sh
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-df.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-df.1 $(patsubst %,virt-%.1,$(filter-out df,$(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 TESTS = test-virt-df.sh \
78         test-virt-list-filesystems.sh \
79         test-virt-ls.sh \
80         test-virt-make-fs.sh \
81         test-virt-resize.sh \
82         test-virt-tar.sh
83
84 endif
85
86 # Make symlinks from virt-foo.pl to virt-foo.  This is just to keep
87 # xgettext happy since it uses the file extension to determine the
88 # implementation language of a file.
89
90 all-local: $(tools:%=virt-%.pl)
91
92 virt-%.pl: virt-%
93         ln -sf $< $@