8ef16fff63cc54681e0edecbedeb9a53c51783a3
[libguestfs.git] / resize / Makefile.am
1 # libguestfs virt-resize 2.0 tools
2 # Copyright (C) 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 EXTRA_DIST = \
21         $(SOURCES) \
22         run-resize-locally \
23         virt-resize.pod \
24         test-virt-resize.sh
25
26 CLEANFILES = *~ *.cmi *.cmo *.cmx *.cmxa *.o virt-resize test.img
27
28 if HAVE_OCAML
29 if HAVE_OCAML_PCRE
30
31 # Alphabetical order.
32 SOURCES = \
33         progress.ml \
34         resize.ml \
35         utils.ml
36
37 # Note this list must be in dependency order.
38 OBJECTS = \
39         utils.cmx \
40         progress.cmx \
41         resize.cmx
42
43 bin_SCRIPTS = virt-resize
44
45 OCAMLPACKAGES = -package guestfs,pcre
46 OCAMLCFLAGS = -g -warn-error CDEFLMPSUVYZX $(OCAMLPACKAGES)
47 OCAMLOPTFLAGS = $(OCAMLCFLAGS)
48
49 virt-resize: $(OBJECTS)
50         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) -linkpkg $^ -o $@
51
52 .mli.cmi:
53         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
54 .ml.cmo:
55         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
56 .ml.cmx:
57         $(OCAMLFIND) ocamlopt $(OCAMLCFLAGS) -c $< -o $@
58
59 # Manual pages and HTML files for the website.
60
61 man_MANS = virt-resize.1
62
63 noinst_DATA = $(top_builddir)/html/virt-resize.1.html
64
65 virt-%.1: virt-%.pod
66         $(top_srcdir)/podwrapper.sh \
67           --man $@ \
68           $<
69
70 $(top_builddir)/html/virt-%.1.html: virt-%
71         $(top_srcdir)/podwrapper.sh \
72           --html $@ \
73           $<
74
75 # Tests.
76
77 random_val := $(shell awk 'BEGIN{srand(); print 1+int(255*rand())}' < /dev/null)
78
79 TESTS_ENVIRONMENT = \
80         MALLOC_PERTURB_=$(random_val) \
81         LD_LIBRARY_PATH=$(top_builddir)/src/.libs \
82         LIBGUESTFS_PATH=$(top_builddir)/appliance
83
84 TESTS = test-virt-resize.sh
85
86 # Dependencies.
87 depend: .depend
88
89 .depend: $(wildcard *.mli) $(wildcard *.ml)
90         rm -f $@ $@-t
91         $(OCAMLFIND) ocamldep $(OCAMLPACKAGES) $^ | \
92           $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
93           sort > $@-t
94         mv $@-t $@
95
96 include .depend
97
98 .PHONY: depend docs
99
100 endif
101 endif