252a3370ac3291dcce1cc08168adec6019534f91
[libguestfs.git] / ocaml / Makefile.am
1 # libguestfs OCaml bindings
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 generator_built = \
21         guestfs.mli \
22         guestfs.ml \
23         guestfs_c_actions.c \
24         bindtests.ml
25
26 EXTRA_DIST = \
27         $(generator_built) \
28         .depend \
29         guestfs_c.c guestfs_c.h \
30         html/.gitignore \
31         META.in \
32         run-bindtests \
33         t/*.ml
34
35 CLEANFILES = *.cmi *.cmo *.cmx *.cma *.cmxa *.o *.a *.so
36 CLEANFILES += t/*.cmi t/*.cmo t/*.cmx t/*.o t/*.a t/*.so
37
38 AM_CPPFLAGS = -I$(top_builddir) -I$(OCAMLLIB) -I$(top_srcdir)/ocaml \
39   -I$(top_srcdir)/src -I$(top_builddir)/src \
40   $(WARN_CFLAGS) $(WERROR_CFLAGS)
41
42 if HAVE_OCAML
43
44 noinst_DATA = mlguestfs.cma mlguestfs.cmxa META
45
46 OBJS = guestfs_c.o guestfs_c_actions.o guestfs.cmo
47 XOBJS = $(OBJS:.cmo=.cmx)
48
49 mlguestfs.cma: $(OBJS)
50         $(OCAMLMKLIB) -o mlguestfs $^ -L$(top_builddir)/src/.libs -lguestfs
51
52 mlguestfs.cmxa: $(XOBJS)
53         $(OCAMLMKLIB) -o mlguestfs $^ -L$(top_builddir)/src/.libs -lguestfs
54
55 guestfs_c.o: guestfs_c.c
56         $(CC) $(AM_CPPFLAGS) $(CFLAGS) -fPIC -Wall -c $<
57
58 guestfs_c_actions.o: guestfs_c_actions.c
59         $(CC) $(AM_CPPFLAGS) $(CFLAGS) -fPIC -Wall -c $<
60
61 if HAVE_OCAMLDOC
62
63 noinst_DATA += html/index.html
64
65 html/index.html: guestfs*.mli guestfs*.ml
66         mkdir -p html
67         -$(OCAMLDOC) -d html -html $^
68 endif
69
70 TESTS_ENVIRONMENT = \
71         LD_LIBRARY_PATH=$(top_builddir)/src/.libs \
72         LIBGUESTFS_PATH=$(top_builddir)/appliance \
73         $(VG)
74
75 TESTS = run-bindtests \
76         t/guestfs_005_load \
77         t/guestfs_010_basic \
78         t/guestfs_070_threads \
79         t/guestfs_080_optargs \
80         t/guestfs_400_events \
81         t/guestfs_400_progress
82 noinst_DATA += bindtests \
83         t/guestfs_005_load \
84         t/guestfs_010_basic \
85         t/guestfs_070_threads \
86         t/guestfs_080_optargs \
87         t/guestfs_400_events \
88         t/guestfs_400_progress
89
90 bindtests: bindtests.cmx mlguestfs.cmxa
91         mkdir -p t
92         $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package unix -linkpkg mlguestfs.cmxa $< -o $@
93
94 t/guestfs_005_load: t/guestfs_005_load.cmx mlguestfs.cmxa
95         mkdir -p t
96         $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package unix -linkpkg mlguestfs.cmxa $< -o $@
97
98 t/guestfs_010_basic: t/guestfs_010_basic.cmx mlguestfs.cmxa
99         mkdir -p t
100         $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package unix -linkpkg mlguestfs.cmxa $< -o $@
101
102 t/guestfs_070_threads: t/guestfs_070_threads.cmx mlguestfs.cmxa
103         mkdir -p t
104         $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package unix,threads -thread -linkpkg mlguestfs.cmxa $< -o $@
105
106 t/guestfs_080_optargs: t/guestfs_080_optargs.cmx mlguestfs.cmxa
107         mkdir -p t
108         $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package unix -linkpkg mlguestfs.cmxa $< -o $@
109
110 t/guestfs_400_events: t/guestfs_400_events.cmx mlguestfs.cmxa
111         mkdir -p t
112         $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package unix -linkpkg mlguestfs.cmxa $< -o $@
113
114 t/guestfs_400_progress: t/guestfs_400_progress.cmx mlguestfs.cmxa
115         mkdir -p t
116         $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package unix -linkpkg mlguestfs.cmxa $< -o $@
117
118 # Need to rebuild the tests from source if the main library has
119 # changed at all, otherwise we get inconsistent assumptions.
120 t/guestfs_070_threads.cmx: t/guestfs_070_threads.ml mlguestfs.cmxa
121         $(OCAMLFIND) ocamlopt -package unix,threads -thread -linkpkg -c $< -o $@
122
123 t/%.cmx: t/%.ml mlguestfs.cmxa
124         $(OCAMLFIND) ocamlopt -package unix -linkpkg -c $< -o $@
125
126 .mli.cmi:
127         $(OCAMLFIND) ocamlc -package unix -c $< -o $@
128 .ml.cmo:
129         $(OCAMLFIND) ocamlc -package unix -c $< -o $@
130 .ml.cmx:
131         $(OCAMLFIND) ocamlopt -package unix -c $< -o $@
132
133 depend: .depend
134
135 .depend: $(wildcard *.mli) $(wildcard *.ml)
136         rm -f $@ $@-t
137         $(OCAMLFIND) ocamldep $^ | sed 's/  *$$//' | sort > $@-t
138         mv $@-t $@
139
140 include .depend
141
142 SUFFIXES = .cmo .cmi .cmx .ml .mli .mll .mly
143
144 # Do the installation by hand, because we want to run ocamlfind.
145 install-data-hook:
146         mkdir -p $(DESTDIR)$(OCAMLLIB)
147         mkdir -p $(DESTDIR)$(OCAMLLIB)/stublibs
148         $(OCAMLFIND) install \
149           -ldconf ignore -destdir $(DESTDIR)$(OCAMLLIB) \
150           guestfs \
151           META *.so *.a *.cma *.cmx *.cmxa *.cmi *.mli
152
153 CLEANFILES += $(noinst_DATA)
154
155 endif
156
157 # Tell version 3.79 and up of GNU make to not build goals in this
158 # directory in parallel.  (Possible solution for RHBZ#502309).
159 .NOTPARALLEL: