out-of-tree build: fix documentation generation
[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 # -I $(top_builddir)/src/.libs is a hack which forces corresponding -L
45 # option to be passed to gcc, so we don't try linking against an
46 # installed copy of libguestfs.
47 OCAMLPACKAGES = -package pcre -I $(top_builddir)/src/.libs -I ../ocaml
48
49 OCAMLCFLAGS = -g -warn-error CDEFLMPSUVYZX $(OCAMLPACKAGES)
50 OCAMLOPTFLAGS = $(OCAMLCFLAGS)
51
52 virt-resize: $(OBJECTS)
53         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) mlguestfs.cmxa -linkpkg $^ -o $@
54
55 .mli.cmi:
56         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
57 .ml.cmo:
58         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) -c $< -o $@
59 .ml.cmx:
60         $(OCAMLFIND) ocamlopt $(OCAMLCFLAGS) -c $< -o $@
61
62 # Manual pages and HTML files for the website.
63
64 man_MANS = virt-resize.1
65
66 noinst_DATA = $(top_builddir)/html/virt-resize.1.html
67
68 virt-resize.1 $(top_builddir)/html/virt-resize.1.html: stamp-virt-resize.pod
69
70 stamp-virt-resize.pod: virt-resize.pod
71         $(top_builddir)/podwrapper.sh \
72           --man virt-resize.1 \
73           --html $(top_builddir)/html/virt-resize.1.html \
74           $<
75         touch $@
76
77 CLEANFILES += stamp-virt-resize.pod
78
79 # Tests.
80
81 random_val := $(shell awk 'BEGIN{srand(); print 1+int(255*rand())}' < /dev/null)
82
83 TESTS_ENVIRONMENT = \
84         MALLOC_PERTURB_=$(random_val) \
85         LD_LIBRARY_PATH=$(top_builddir)/src/.libs \
86         LIBGUESTFS_PATH=$(top_builddir)/appliance \
87         TMPDIR=$(top_builddir)
88
89 TESTS = test-virt-resize.sh
90
91 # Dependencies.
92 depend: .depend
93
94 .depend: $(wildcard *.mli) $(wildcard *.ml)
95         rm -f $@ $@-t
96         $(OCAMLFIND) ocamldep $(OCAMLPACKAGES) $^ | \
97           $(SED) -e :a -e '/ *\\$$/N; s/ *\\\n */ /; ta' | \
98           sort > $@-t
99         mv $@-t $@
100
101 include .depend
102
103 .PHONY: depend docs
104
105 endif
106 endif
107
108 # Parallel builds don't obey dependencies for some reason we
109 # don't understand.
110 .NOTPARALLEL: