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