Metadata parser.
[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 pkg_gettext     = @pkg_gettext@
25
26 OCAMLFIND       = @OCAMLFIND@
27
28 ifneq ($(OCAMLFIND),)
29 OCAMLCPACKAGES  := -package unix -I ../libvirt
30 OCAMLCFLAGS     := -g
31 OCAMLCLIBS      := -linkpkg
32 OCAMLOPTPACKAGES := $(OCAMLCPACKAGES)
33 OCAMLOPTFLAGS   :=
34 OCAMLOPTLIBS    := $(OCAMLCLIBS)
35 else
36 OCAMLCINCS      := -I ../libvirt
37 OCAMLCFLAGS     := -g
38 OCAMLCLIBS      := unix.cma
39 OCAMLOPTINCS    := $(OCAMLCINCS)
40 OCAMLOPTFLAGS   :=
41 OCAMLOPTLIBS    := unix.cmxa
42 endif
43
44 ifneq ($(pkg_gettext),no)
45 ifneq ($(OCAMLFIND),)
46 OCAMLCPACKAGES  += -package gettext-stub
47 OCAMLOPTPACKAGES  += -package gettext-stub
48 else
49 OCAMLCINCS      += -I gettext -I gettext-stub
50 OCAMLOPTINCS    += -I gettext -I gettext-stub
51 endif
52 endif
53
54 OBJS            := mlvirsh_gettext.cmo mlvirsh.cmo
55 XOBJS           := $(OBJS:.cmo=.cmx)
56
57 export LIBRARY_PATH=../libvirt
58 export LD_LIBRARY_PATH=../libvirt
59
60 BYTE_TARGETS    := mlvirsh
61 OPT_TARGETS     := mlvirsh.opt
62
63 all: $(BYTE_TARGETS)
64
65 opt: $(OPT_TARGETS)
66
67 ifneq ($(OCAMLFIND),)
68 mlvirsh: $(OBJS)
69         $(OCAMLFIND) ocamlc $(OCAMLCPACKAGES) $(OCAMLCFLAGS) $(OCAMLCLIBS) \
70           ../libvirt/mllibvirt.cma -o $@ $^
71
72 mlvirsh.opt: $(XOBJS)
73         $(OCAMLFIND) ocamlopt \
74           $(OCAMLOPTPACKAGES) $(OCAMLOPTFLAGS) $(OCAMLOPTLIBS) \
75           ../libvirt/mllibvirt.cmxa -o $@ $^
76 else
77 mlvirsh: $(OBJS)
78         $(OCAMLC) $(OCAMLCINCS) $(OCAMLCFLAGS) $(OCAMLCLIBS) \
79           ../libvirt/mllibvirt.cma -o $@ $^
80
81 mlvirsh.opt: $(XOBJS)
82         $(OCAMLOPT) \
83           $(OCAMLOPTINCS) $(OCAMLOPTFLAGS) $(OCAMLOPTLIBS) \
84           ../libvirt/mllibvirt.cmxa -o $@ $^
85 endif
86
87 install:
88         if [ -x mlvirsh.opt ]; then \
89           mkdir -p $(DESTDIR)$(bindir); \
90           $(INSTALL) -m 0755 mlvirsh.opt $(DESTDIR)$(bindir)/mlvirsh; \
91         fi
92
93 include ../Make.rules