Generated code for 'sh' and 'sh-lines' commands.
[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         bindtests.ml \
23         run-bindtests \
24         t/*.ml
25
26 SUBDIRS = examples
27
28 CLEANFILES = *.cmi *.cmo *.cmx *.cma *.cmxa *.o *.a *.so
29 CLEANFILES += t/*.cmi t/*.cmo t/*.cmx t/*.o t/*.a t/*.so
30
31 if HAVE_OCAML
32
33 noinst_DATA = mlguestfs.cma mlguestfs.cmxa META
34
35 mlguestfs.cma: guestfs_c.o guestfs_c_actions.o guestfs.cmo
36         $(OCAMLMKLIB) -o mlguestfs $^ -L$(top_builddir)/src/.libs -lguestfs
37
38 mlguestfs.cmxa: guestfs_c.o guestfs_c_actions.o guestfs.cmx
39         $(OCAMLMKLIB) -o mlguestfs $^ -L$(top_builddir)/src/.libs -lguestfs
40
41 guestfs_c.o: guestfs_c.c
42         $(CC) $(CFLAGS) -I$(OCAMLLIB) -I$(top_builddir)/src -fPIC -Wall -c $<
43
44 guestfs_c_actions.o: guestfs_c_actions.c
45         $(CC) $(CFLAGS) -I$(OCAMLLIB) -I$(top_builddir)/src -fPIC -Wall -c $<
46
47 TESTS_ENVIRONMENT = \
48         LD_LIBRARY_PATH=$(top_builddir)/src/.libs \
49         LIBGUESTFS_PATH=$(top_builddir)/appliance \
50         $(VG)
51
52 TESTS = run-bindtests \
53         t/guestfs_005_load t/guestfs_010_launch t/guestfs_050_lvcreate
54 noinst_DATA += bindtests \
55         t/guestfs_005_load t/guestfs_010_launch t/guestfs_050_lvcreate
56
57 bindtests: bindtests.ml mlguestfs.cmxa
58         $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . unix.cmxa mlguestfs.cmxa $< -o $@
59
60 t/guestfs_005_load: t/guestfs_005_load.ml mlguestfs.cmxa
61         $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . unix.cmxa mlguestfs.cmxa $< -o $@
62
63 t/guestfs_010_launch: t/guestfs_010_launch.ml mlguestfs.cmxa
64         $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . unix.cmxa mlguestfs.cmxa $< -o $@
65
66 t/guestfs_050_lvcreate: t/guestfs_050_lvcreate.ml mlguestfs.cmxa
67         $(OCAMLFIND) ocamlopt -cclib -L$(top_builddir)/src/.libs -I . unix.cmxa mlguestfs.cmxa $< -o $@
68
69 .mli.cmi:
70         $(OCAMLFIND) ocamlc -c $<
71 .ml.cmo:
72         $(OCAMLFIND) ocamlc -c $<
73 .ml.cmx:
74         $(OCAMLFIND) ocamlopt -c $<
75
76 depend: .depend
77
78 .depend: $(wildcard *.mli) $(wildcard *.ml)
79         rm -f .depend
80         $(OCAMLFIND) ocamldep $^ > $@
81
82 include .depend
83
84 SUFFIXES = .cmo .cmi .cmx .ml .mli .mll .mly
85
86 # Do the installation by hand, because we want to run ocamlfind.
87 install-data-hook:
88         mkdir -p $(DESTDIR)$(OCAMLLIB)
89         mkdir -p $(DESTDIR)$(OCAMLLIB)/stublibs
90         $(OCAMLFIND) install \
91           -ldconf ignore -destdir $(DESTDIR)$(OCAMLLIB) \
92           guestfs \
93           META *.so *.a *.cma *.cmx *.cmxa *.cmi *.mli
94
95 CLEANFILES += $(noinst_DATA)
96
97 endif
98
99 # Tell version 3.79 and up of GNU make to not build goals in this
100 # directory in parallel.  (Possible solution for RHBZ#502309).
101 .NOTPARALLEL: