1 # libguestfs OCaml bindings
2 # Copyright (C) 2009 Red Hat Inc.
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.
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.
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.
18 include $(top_srcdir)/subdir-rules.mk
23 guestfs_inspector.mli \
24 guestfs_inspector.ml \
30 guestfs_c.c guestfs_c.h \
31 guestfs_inspector.mli guestfs_inspector.ml \
36 CLEANFILES = *.cmi *.cmo *.cmx *.cma *.cmxa *.o *.a *.so
37 CLEANFILES += t/*.cmi t/*.cmo t/*.cmx t/*.o t/*.a t/*.so
39 AM_CPPFLAGS = -I$(top_builddir) -I$(OCAMLLIB) -I$(top_srcdir)/ocaml \
40 -I$(top_srcdir)/src -I$(top_builddir)/src \
41 $(WARN_CFLAGS) $(WERROR_CFLAGS)
46 noinst_DATA = mlguestfs.cma mlguestfs.cmxa META
48 OBJS = guestfs_c.o guestfs_c_actions.o guestfs.cmo guestfs_inspector.cmo
49 XOBJS = $(OBJS:.cmo=.cmx)
51 mlguestfs.cma: $(OBJS)
52 $(OCAMLMKLIB) -o mlguestfs $^ -L$(top_builddir)/src/.libs -lguestfs
54 mlguestfs.cmxa: $(XOBJS)
55 $(OCAMLMKLIB) -o mlguestfs $^ -L$(top_builddir)/src/.libs -lguestfs
57 guestfs_c.o: guestfs_c.c
58 $(CC) $(AM_CPPFLAGS) $(CFLAGS) -fPIC -Wall -c $<
60 guestfs_c_actions.o: guestfs_c_actions.c
61 $(CC) $(AM_CPPFLAGS) $(CFLAGS) -fPIC -Wall -c $<
64 LD_LIBRARY_PATH=$(top_builddir)/src/.libs \
65 LIBGUESTFS_PATH=$(top_builddir)/appliance \
68 TESTS = run-bindtests \
69 t/guestfs_005_load t/guestfs_010_launch t/guestfs_050_lvcreate \
70 t/guestfs_060_readdir t/guestfs_500_inspect
71 noinst_DATA += bindtests \
72 t/guestfs_005_load t/guestfs_010_launch t/guestfs_050_lvcreate \
73 t/guestfs_060_readdir t/guestfs_500_inspect
75 bindtests: bindtests.cmx mlguestfs.cmxa
77 $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package xml-light,unix -linkpkg mlguestfs.cmxa $< -o $@
79 t/guestfs_005_load: t/guestfs_005_load.cmx mlguestfs.cmxa
81 $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package xml-light,unix -linkpkg mlguestfs.cmxa $< -o $@
83 t/guestfs_010_launch: t/guestfs_010_launch.cmx mlguestfs.cmxa
85 $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package xml-light,unix -linkpkg mlguestfs.cmxa $< -o $@
87 t/guestfs_050_lvcreate: t/guestfs_050_lvcreate.cmx mlguestfs.cmxa
89 $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package xml-light,unix -linkpkg mlguestfs.cmxa $< -o $@
91 t/guestfs_060_readdir: t/guestfs_060_readdir.cmx mlguestfs.cmxa
93 $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package xml-light,unix -linkpkg mlguestfs.cmxa $< -o $@
95 t/guestfs_500_inspect: t/guestfs_500_inspect.cmx mlguestfs.cmxa
97 $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . -package xml-light,unix -linkpkg mlguestfs.cmxa $< -o $@
99 # Need to rebuild the tests from source if the main library has
100 # changed at all, otherwise we get inconsistent assumptions.
101 t/%.cmx: t/%.ml mlguestfs.cmxa
102 $(OCAMLFIND) ocamlopt -package xml-light,unix -linkpkg -c $< -o $@
105 $(OCAMLFIND) ocamlc -package xml-light,unix -c $< -o $@
107 $(OCAMLFIND) ocamlc -package xml-light,unix -c $< -o $@
109 $(OCAMLFIND) ocamlopt -package xml-light,unix -c $< -o $@
113 .depend: $(wildcard *.mli) $(wildcard *.ml)
115 $(OCAMLFIND) ocamldep $^ | sed 's/ *$$//' | sort > $@-t
120 SUFFIXES = .cmo .cmi .cmx .ml .mli .mll .mly
122 # Do the installation by hand, because we want to run ocamlfind.
124 mkdir -p $(DESTDIR)$(OCAMLLIB)
125 mkdir -p $(DESTDIR)$(OCAMLLIB)/stublibs
126 $(OCAMLFIND) install \
127 -ldconf ignore -destdir $(DESTDIR)$(OCAMLLIB) \
129 META *.so *.a *.cma *.cmx *.cmxa *.cmi *.mli
131 CLEANFILES += $(noinst_DATA)
136 # Tell version 3.79 and up of GNU make to not build goals in this
137 # directory in parallel. (Possible solution for RHBZ#502309).