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