Additional test programs for Perl, Python, OCaml bindings.
[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         t/*.ml
23
24 SUBDIRS = examples
25
26 CLEANFILES = *~ *.cmi *.cmo *.cmx *.cma *.cmxa *.o *.a *.so
27 CLEANFILES += t/*~ t/*.cmi t/*.cmo t/*.o t/*.a t/*.so
28
29 if HAVE_OCAML
30
31 noinst_DATA = mlguestfs.cma mlguestfs.cmxa META
32
33 mlguestfs.cma: guestfs_c.o guestfs_c_actions.o guestfs.cmo
34         $(OCAMLMKLIB) -o mlguestfs $^ -L$(top_builddir)/src/.libs -lguestfs
35
36 mlguestfs.cmxa: guestfs_c.o guestfs_c_actions.o guestfs.cmx
37         $(OCAMLMKLIB) -o mlguestfs $^ -L$(top_builddir)/src/.libs -lguestfs
38
39 guestfs_c.o: guestfs_c.c
40         $(CC) $(CFLAGS) -I$(OCAMLLIB) -I$(top_builddir)/src -fPIC -Wall -c $<
41
42 guestfs_c_actions.o: guestfs_c_actions.c
43         $(CC) $(CFLAGS) -I$(OCAMLLIB) -I$(top_builddir)/src -fPIC -Wall -c $<
44
45 TESTS_ENVIRONMENT = \
46         LD_LIBRARY_PATH=$(abs_top_builddir)/src/.libs \
47         LIBGUESTFS_PATH=$(abs_top_builddir)
48
49 TESTS = t/guestfs_005_load t/guestfs_010_launch t/guestfs_050_lvcreate
50 noinst_DATA += $(TESTS)
51
52 t/guestfs_005_load: t/guestfs_005_load.ml
53         $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . unix.cmxa mlguestfs.cmxa $< -o $@
54
55 t/guestfs_010_launch: t/guestfs_010_launch.ml
56         $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . unix.cmxa mlguestfs.cmxa $< -o $@
57
58 t/guestfs_050_lvcreate: t/guestfs_050_lvcreate.ml
59         $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . unix.cmxa mlguestfs.cmxa $< -o $@
60
61 .mli.cmi:
62         $(OCAMLFIND) ocamlc -c $<
63 .ml.cmo:
64         $(OCAMLFIND) ocamlc -c $<
65 .ml.cmx:
66         $(OCAMLFIND) ocamlopt -c $<
67
68 depend: .depend
69
70 .depend: $(wildcard *.mli) $(wildcard *.ml)
71         rm -f .depend
72         $(OCAMLFIND) ocamldep $^ > $@
73
74 include .depend
75
76 SUFFIXES = .cmo .cmi .cmx .ml .mli .mll .mly
77
78 # Do the installation by hand, because we want to run ocamlfind.
79 install-data-hook:
80         mkdir -p $(DESTDIR)$(OCAMLLIB)
81         mkdir -p $(DESTDIR)$(OCAMLLIB)/stublibs
82         $(OCAMLFIND) install \
83           -ldconf ignore -destdir $(DESTDIR)$(OCAMLLIB) \
84           guestfs \
85           META *.so *.a *.cma *.cmx *.cmxa *.cmi *.mli
86
87 CLEANFILES += $(noinst_DATA)
88
89 endif