Fix 'make install'
[virt-mem.git] / mem / Makefile.in
1 # virt-mem
2 # @configure_input@
3 # Copyright (C) 2008 Red Hat Inc., Richard W.M. Jones
4 #
5 # This library is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU Lesser General Public
7 # License as published by the Free Software Foundation; either
8 # version 2 of the License, or (at your option) any later version.
9 #
10 # This library is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 # Lesser General Public License for more details.
14 #
15 # You should have received a copy of the GNU Lesser General Public
16 # License along with this library; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
18
19 PACKAGE         = @PACKAGE_NAME@
20 VERSION         = @PACKAGE_VERSION@
21
22 INSTALL         = @INSTALL@
23 MKDIR_P         = @MKDIR_P@
24
25 prefix          = @prefix@
26 exec_prefix     = @exec_prefix@
27 bindir          = @bindir@
28
29 pkg_gettext     = @pkg_gettext@
30
31 SYNTAX          = -syntax bitstring.syntax
32
33 OCAMLCPACKAGES  = -package unix,bigarray,extlib,libvirt,xml-light,bitstring.syntax -I ../lib
34
35 ifneq ($(pkg_gettext),no)
36 OCAMLCPACKAGES  += -package gettext-stub
37 endif
38
39 OCAMLCFLAGS     = @OCAMLCFLAGS@ $(SYNTAX)
40 OCAMLCLIBS      = -linkpkg bitstring.cma ../lib/virt_mem.cma
41
42 OCAMLOPTFLAGS   = @OCAMLOPTFLAGS@ $(SYNTAX)
43 OCAMLOPTPACKAGES = $(OCAMLCPACKAGES)
44 OCAMLOPTLIBS    = -linkpkg bitstring.cmxa ../lib/virt_mem.cmxa
45
46 OCAMLDOCFLAGS   = -html -sort $(OCAMLCPACKAGES) $(SYNTAX)
47
48 OCAMLDEPFLAGS   = $(SYNTAX)
49
50 TARGETS         = virt-mem virt-mem.opt
51
52 OBJS            = $(shell for t in $(TOOLS); do echo ../$$t/virt_$$t.cmo; done) virt_mem_main.cmo
53 XOBJS           = $(OBJS:%.cmo=%.cmx)
54
55 all:    $(TARGETS)
56
57 virt-mem: ../lib/virt_mem.cma $(OBJS)
58         ocamlfind ocamlc \
59           $(OCAMLCFLAGS) $(OCAMLCPACKAGES) $(OCAMLCLIBS) $(OBJS) -o $@
60
61 virt-mem.opt: ../lib/virt_mem.cmxa $(XOBJS)
62         ocamlfind ocamlopt \
63           $(OCAMLOPTFLAGS) $(OCAMLOPTPACKAGES) $(OCAMLOPTLIBS) $(XOBJS) -o $@
64
65 install:
66         if [ -x virt-mem.opt ]; then \
67           $(MKDIR_P) $(DESTDIR)$(bindir); \
68           $(INSTALL) -m 0755 virt-mem.opt $(DESTDIR)$(bindir)/virt-mem; \
69           (cd $(DESTDIR)$(bindir) && \
70             for t in $(TOOLS); do ln -f virt-mem virt-$$t; done \
71           ); \
72         fi
73
74 include ../Make.rules