b09cc57ea4f3cb11668f3c7f097d23fd973145fa
[virt-top.git] / mlvirtmanager / Makefile.in
1 # mlvirtmanager
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,lablgtk2 -I ../libvirt
28 OCAMLCFLAGS     := -g
29 OCAMLCLIBS      := -linkpkg
30 OCAMLOPTPACKAGES := $(OCAMLCPACKAGES)
31 OCAMLOPTFLAGS   :=
32 OCAMLOPTLIBS    := $(OCAMLCLIBS)
33 else
34 OCAMLCINCS      := -I @pkg_lablgtk2@ -I ../libvirt
35 OCAMLCFLAGS     := -g
36 OCAMLCLIBS      := unix.cma lablgtk.cma
37 OCAMLOPTINCS    := $(OCAMLCINCS)
38 OCAMLOPTFLAGS   :=
39 OCAMLOPTLIBS    := unix.cmxa lablgtk.cmxa
40 endif
41
42 export LIBRARY_PATH=../libvirt
43 export LD_LIBRARY_PATH=../libvirt
44
45 BYTE_TARGETS    := mlvirtmanager
46 OPT_TARGETS     := mlvirtmanager.opt
47
48 VIRTMANAGER_OBJS := \
49         mlvirtmanager_helpers.cmo \
50         mlvirtmanager_connections.cmo \
51         mlvirtmanager_domain_ops.cmo \
52         mlvirtmanager_mainwindow.cmo \
53         mlvirtmanager.cmo
54
55 VIRTMANAGER_XOBJS := $(VIRTMANAGER_OBJS:.cmo=.cmx)
56
57 all: $(BYTE_TARGETS)
58
59 opt: $(OPT_TARGETS)
60
61 ifneq ($(OCAMLFIND),)
62 mlvirtmanager: $(VIRTMANAGER_OBJS)
63         $(OCAMLFIND) ocamlc $(OCAMLCPACKAGES) $(OCAMLCFLAGS) $(OCAMLCLIBS) \
64           ../libvirt/mllibvirt.cma gtkInit.cmo -o $@ $^
65
66 mlvirtmanager.opt: $(VIRTMANAGER_XOBJS)
67         $(OCAMLFIND) ocamlopt \
68           $(OCAMLOPTPACKAGES) $(OCAMLOPTFLAGS) $(OCAMLOPTLIBS) \
69           ../libvirt/mllibvirt.cmxa gtkInit.cmx -o $@ $^
70 else
71 mlvirtmanager: $(VIRTMANAGER_OBJS)
72         $(OCAMLC) $(OCAMLCINCS) $(OCAMLCFLAGS) $(OCAMLCLIBS) \
73           ../libvirt/mllibvirt.cma gtkInit.cmo -o $@ $^
74
75 mlvirtmanager.opt: $(VIRTMANAGER_XOBJS)
76         $(OCAMLOPT) \
77           $(OCAMLOPTINCS) $(OCAMLOPTFLAGS) $(OCAMLOPTLIBS) \
78           ../libvirt/mllibvirt.cmxa gtkInit.cmx -o $@ $^
79 endif
80
81 install:
82         if [ -x mlvirtmanager.opt ]; then \
83           mkdir -p $(DESTDIR)$(bindir); \
84           $(INSTALL) -m 0755 mlvirtmanager.opt $(DESTDIR)$(bindir)/mlvirtmanager; \
85         fi
86
87 include ../Make.rules