Simple support for new libvirt virDomainMemoryPeek
[virt-mem.git] / dmesg / 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          = -pp "camlp4o -I`ocamlc -where`/bitmatch bitmatch.cma pa_bitmatch.cmo"
25
26 #OCAMLCPACKAGES = -package unix,bigarray,extlib,libvirt,xml-light,bitmatch
27 OCAMLCPACKAGES  = -package unix,bigarray,extlib,libvirt,xml-light -I +bitmatch -I ../lib
28
29 ifneq ($(pkg_gettext),no)
30 OCAMLCPACKAGES  += -package gettext-stub
31 endif
32
33 OCAMLCFLAGS     = @OCAMLCFLAGS@ $(SYNTAX)
34 OCAMLCLIBS      = -linkpkg bitmatch.cma ../lib/virt_mem.cma
35
36 OCAMLOPTFLAGS   = @OCAMLOPTFLAGS@ $(SYNTAX)
37 OCAMLOPTPACKAGES = $(OCAMLCPACKAGES)
38 OCAMLOPTLIBS    = -linkpkg bitmatch.cmxa ../lib/virt_mem.cmxa
39
40 OCAMLDOCFLAGS   = -html -sort $(OCAMLCPACKAGES) $(SYNTAX)
41
42 OCAMLDEPFLAGS   = $(SYNTAX)
43
44 TARGETS         = virt-dmesg virt-dmesg.opt
45
46 OBJS            = virt_dmesg.cmo
47 XOBJS           = virt_dmesg.cmx
48
49 all:    $(TARGETS)
50
51 virt-dmesg: $(OBJS) ../lib/virt_mem.cma
52         ocamlfind ocamlc \
53           $(OCAMLCFLAGS) $(OCAMLCPACKAGES) $(OCAMLCLIBS) $(OBJS) -o $@
54
55 virt-dmesg.opt: $(XOBJS) ../lib/virt_mem.cmxa
56         ocamlfind ocamlopt \
57           $(OCAMLOPTFLAGS) $(OCAMLOPTPACKAGES) $(OCAMLOPTLIBS) $(XOBJS) -o $@
58
59 include ../Make.rules