1 # virt-ctrl (originally called mlvirtmanager)
2 # Copyright (C) 2007 Red Hat Inc., Richard W.M. Jones
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.
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.
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.
21 exec_prefix = @exec_prefix@
24 OCAMLFIND = @OCAMLFIND@
27 OCAMLCPACKAGES := -package unix,lablgtk2 -I ../libvirt
29 OCAMLCLIBS := -linkpkg
30 OCAMLOPTPACKAGES := $(OCAMLCPACKAGES)
32 OCAMLOPTLIBS := $(OCAMLCLIBS)
34 OCAMLCINCS := -I @pkg_lablgtk2@ -I ../libvirt
36 OCAMLCLIBS := unix.cma lablgtk.cma
37 OCAMLOPTINCS := $(OCAMLCINCS)
39 OCAMLOPTLIBS := unix.cmxa lablgtk.cmxa
42 export LIBRARY_PATH=../libvirt
43 export LD_LIBRARY_PATH=../libvirt
45 BYTE_TARGETS := virt-ctrl
46 OPT_TARGETS := virt-ctrl.opt
55 XOBJS := $(OBJS:.cmo=.cmx)
63 $(OCAMLFIND) ocamlc $(OCAMLCPACKAGES) $(OCAMLCFLAGS) $(OCAMLCLIBS) \
64 ../libvirt/mllibvirt.cma gtkInit.cmo -o $@ $^
66 virt-ctrl.opt: $(XOBJS)
67 $(OCAMLFIND) ocamlopt \
68 $(OCAMLOPTPACKAGES) $(OCAMLOPTFLAGS) $(OCAMLOPTLIBS) \
69 ../libvirt/mllibvirt.cmxa gtkInit.cmx -o $@ $^
72 $(OCAMLC) $(OCAMLCINCS) $(OCAMLCFLAGS) $(OCAMLCLIBS) \
73 ../libvirt/mllibvirt.cma gtkInit.cmo -o $@ $^
77 ifneq ($(host_os),mingw32)
78 virt-ctrl.opt: $(XOBJS)
79 $(OCAMLOPT) $(OCAMLOPTINCS) $(OCAMLOPTFLAGS) $(OCAMLOPTLIBS) \
80 $(patsubst %,-cclib %,$(LDFLAGS)) \
81 ../libvirt/mllibvirt.cmxa gtkInit.cmx -o $@ $^
83 # On MinGW, use a hacked 'gcc' wrapper which understands the @...
84 # syntax for extending the command line.
85 gcc.exe: mingw-gcc-wrapper.ml
86 $(OCAMLC) unix.cma $< -o $@
88 virt-ctrl.opt: $(XOBJS) gcc.exe
90 $(OCAMLOPT) $(OCAMLOPTINCS) $(OCAMLOPTFLAGS) $(OCAMLOPTLIBS) \
91 $(patsubst %,-cclib %,$(LDFLAGS)) \
92 ../libvirt/mllibvirt.cmxa gtkInit.cmx -o $@ $(XOBJS)
97 if [ -x virt-ctrl.opt ]; then \
98 mkdir -p $(DESTDIR)$(bindir); \
99 $(INSTALL) -m 0755 virt-ctrl.opt $(DESTDIR)$(bindir)/virt-ctrl; \
102 include ../Make.rules