mlvirsh can compile without extlib
[virt-top.git] / mlvirsh / Makefile.in
1 # mlvirsh
2 # Copyright (C) 2007 Red Hat Inc., Richard W.M. Jones
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 INSTALL         := @INSTALL@
19
20 prefix          = @prefix@
21 exec_prefix     = @exec_prefix@
22 bindir          = @bindir@
23
24 OCAMLFIND       = @OCAMLFIND@
25
26 ifneq ($(OCAMLFIND),)
27 OCAMLCPACKAGES  := -package unix -I ../libvirt
28 OCAMLCFLAGS     := -g
29 OCAMLCLIBS      := -linkpkg
30 OCAMLOPTPACKAGES := $(OCAMLCPACKAGES)
31 OCAMLOPTFLAGS   :=
32 OCAMLOPTLIBS    := $(OCAMLCLIBS)
33 else
34 OCAMLCINCS      := -I ../libvirt
35 OCAMLCFLAGS     := -g
36 OCAMLCLIBS      := unix.cma
37 OCAMLOPTINCS    := $(OCAMLCINCS)
38 OCAMLOPTFLAGS   :=
39 OCAMLOPTLIBS    := unix.cmxa
40 endif
41
42 export LIBRARY_PATH=../libvirt
43 export LD_LIBRARY_PATH=../libvirt
44
45 BYTE_TARGETS    := mlvirsh
46 OPT_TARGETS     := mlvirsh.opt
47
48 all: $(BYTE_TARGETS)
49
50 opt: $(OPT_TARGETS)
51
52 ifneq ($(OCAMLFIND),)
53 mlvirsh: mlvirsh.cmo
54         $(OCAMLFIND) ocamlc $(OCAMLCPACKAGES) $(OCAMLCFLAGS) $(OCAMLCLIBS) \
55           ../libvirt/mllibvirt.cma -o $@ $<
56
57 mlvirsh.opt: mlvirsh.cmx
58         $(OCAMLFIND) ocamlopt \
59           $(OCAMLOPTPACKAGES) $(OCAMLOPTFLAGS) $(OCAMLOPTLIBS) \
60           ../libvirt/mllibvirt.cmxa -o $@ $<
61 else
62 mlvirsh: mlvirsh.cmo
63         $(OCAMLC) $(OCAMLCINCS) $(OCAMLCFLAGS) $(OCAMLCLIBS) \
64           ../libvirt/mllibvirt.cma -o $@ $<
65
66 mlvirsh.opt: mlvirsh.cmx
67         $(OCAMLOPT) \
68           $(OCAMLOPTINCS) $(OCAMLOPTFLAGS) $(OCAMLOPTLIBS) \
69           ../libvirt/mllibvirt.cmxa -o $@ $<
70 endif
71
72 install:
73         if [ -x mlvirsh.opt ]; then \
74           mkdir -p $(DESTDIR)$(bindir); \
75           $(INSTALL) -m 0755 mlvirsh.opt $(DESTDIR)$(bindir)/mlvirsh; \
76         fi
77
78 include ../Make.rules