Added OCaml examples.
[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 EXTRA_DIST = \
19         guestfs.mli guestfs.ml \
20         guestfs_c.c guestfs_c.h guestfs_c_actions.c \
21         .depend META.in
22
23 SUBDIRS = examples
24
25 if HAVE_OCAML
26
27 noinst_DATA = mlguestfs.cma mlguestfs.cmxa META
28
29 mlguestfs.cma: guestfs_c.o guestfs_c_actions.o guestfs.cmo
30         $(OCAMLMKLIB) -o mlguestfs $^ -lguestfs
31
32 mlguestfs.cmxa: guestfs_c.o guestfs_c_actions.o guestfs.cmx
33         $(OCAMLMKLIB) -o mlguestfs $^ -lguestfs
34
35 guestfs_c.o: guestfs_c.c
36         $(CC) $(CFLAGS) -I$(OCAMLLIB) -I$(top_builddir)/src -fPIC -Wall -c $<
37
38 guestfs_c_actions.o: guestfs_c_actions.c
39         $(CC) $(CFLAGS) -I$(OCAMLLIB) -I$(top_builddir)/src -fPIC -Wall -c $<
40
41 .mli.cmi:
42         $(OCAMLFIND) ocamlc -c $<
43 .ml.cmo:
44         $(OCAMLFIND) ocamlc -c $<
45 .ml.cmx:
46         $(OCAMLFIND) ocamlopt -c $<
47
48 depend: .depend
49
50 .depend: $(wildcard *.mli) $(wildcard *.ml)
51         rm -f .depend
52         $(OCAMLFIND) ocamldep $^ > $@
53
54 include .depend
55
56 SUFFIXES = .cmo .cmi .cmx .ml .mli .mll .mly
57
58 # Do the installation by hand, because we want to run ocamlfind.
59 install-data-hook:
60         mkdir -p $(DESTDIR)$(OCAMLLIB)
61         mkdir -p $(DESTDIR)$(OCAMLLIB)/stublibs
62         $(OCAMLFIND) install \
63           -ldconf ignore -destdir $(DESTDIR)$(OCAMLLIB) \
64           guestfs \
65           META *.so *.a *.cma *.cmx *.cmxa *.cmi *.mli
66
67 endif