Use META file from newest bitmatch.
[virt-mem.git] / lib / 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
24 SYNTAX          = -syntax bitmatch.syntax
25
26 OCAMLCPACKAGES  = -package unix,bigarray,extlib,libvirt,xml-light,bitmatch.syntax
27
28 ifneq ($(pkg_gettext),no)
29 OCAMLCPACKAGES  += -package gettext-stub
30 endif
31
32 OCAMLCFLAGS     = @OCAMLCFLAGS@ $(SYNTAX)
33 OCAMLCLIBS      = -linkpkg bitmatch.cma
34
35 OCAMLOPTFLAGS   = @OCAMLOPTFLAGS@ $(SYNTAX)
36 OCAMLOPTPACKAGES = $(OCAMLCPACKAGES)
37 OCAMLOPTLIBS    = -linkpkg bitmatch.cmxa
38
39 OCAMLDOCFLAGS   = -html -sort $(OCAMLCPACKAGES) $(SYNTAX)
40
41 OCAMLDEPFLAGS   = $(SYNTAX)
42
43 TARGETS         = virt_mem.cma virt_mem.cmxa
44
45 OBJS            = virt_mem_gettext.cmo \
46                   virt_mem_version.cmo \
47                   virt_mem_utils.cmo \
48                   virt_mem_mmap.cmo \
49                   virt_mem.cmo
50 XOBJS           = $(OBJS:%.cmo=%.cmx)
51
52 all:    $(TARGETS)
53
54 virt_mem.cma: $(OBJS)
55         ocamlfind ocamlc $(OCAMLCFLAGS) $(OCAMLCPACKAGES) -a -o $@ $^
56
57 virt_mem.cmxa: $(XOBJS)
58         ocamlfind ocamlopt $(OCAMLOPTFLAGS) $(OCAMLOPTPACKAGES) -a -o $@ $^
59
60 install:
61
62 include ../Make.rules