Remove ad-hoc run*locally scripts, replace with './run'
[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         virt-resize.pod \
23         test-virt-resize.sh
24
25 CLEANFILES = *~ *.cmi *.cmo *.cmx *.cmxa *.o virt-resize test.img
26
27 if HAVE_OCAML
28 if HAVE_OCAML_PCRE
29
30 # Alphabetical order.
31 SOURCES = \
32         progress.ml \
33         resize.ml \
34         utils.ml
35
36 # Note this list must be in dependency order.
37 OBJECTS = \
38         utils.cmx \
39         progress.cmx \
40         resize.cmx
41
42 bin_SCRIPTS = virt-resize
43
44 OCAMLPACKAGES = -package pcre -I ../ocaml
45 OCAMLCFLAGS = -g -warn-error CDEFLMPSUVYZX $(OCAMLPACKAGES)
46 OCAMLOPTFLAGS = $(OCAMLCFLAGS)
47
48 virt-resize: $(OBJECTS)
49         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) mlguestfs.cmxa -linkpkg $^ -o $@
50
51 .mli.cmi:
52         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
53 .ml.cmo:
54         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
55 .ml.cmx:
56         $(OCAMLFIND) ocamlopt $(OCAMLCFLAGS) -c $< -o $@
57
58 # Manual pages and HTML files for the website.
59
60 man_MANS = virt-resize.1
61
62 noinst_DATA = $(top_builddir)/html/virt-resize.1.html
63
64 virt-resize.1 $(top_builddir)/html/virt-resize.1.html: stamp-virt-resize.pod
65
66 stamp-virt-resize.pod: virt-resize.pod
67         $(top_srcdir)/podwrapper.sh \
68           --man virt-resize.1 \
69           --html $(top_builddir)/html/virt-resize.1.html \
70           $<
71         touch $@
72
73 CLEANFILES += stamp-virt-resize.pod
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
102
103 # Parallel builds don't obey dependencies for some reason we
104 # don't understand.
105 .NOTPARALLEL: