3 # Copyright (C) 2008 Red Hat Inc., Richard W.M. Jones
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.
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.
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
19 PACKAGE = @PACKAGE_NAME@
20 VERSION = @PACKAGE_VERSION@
25 SYNTAX = -pp "camlp4o -I$$(ocamlc -where)/bitmatch bitmatch.cma pa_bitmatch.cmo"
27 #OCAMLCPACKAGES = -package unix,bigarray,extlib,libvirt,xml-light,bitmatch
28 OCAMLCPACKAGES = -package unix,bigarray,extlib,libvirt,xml-light -I +bitmatch -I ../lib
30 ifneq ($(pkg_gettext),no)
31 OCAMLCPACKAGES += -package gettext-stub
34 OCAMLCFLAGS = @OCAMLCFLAGS@ $(SYNTAX)
35 OCAMLCLIBS = -linkpkg bitmatch.cma ../lib/virt_mem.cma
37 OCAMLOPTFLAGS = @OCAMLOPTFLAGS@ $(SYNTAX)
38 OCAMLOPTPACKAGES = $(OCAMLCPACKAGES)
39 OCAMLOPTLIBS = -linkpkg bitmatch.cmxa ../lib/virt_mem.cmxa
41 OCAMLDOCFLAGS = -html -sort $(OCAMLCPACKAGES) $(SYNTAX)
43 OCAMLDEPFLAGS = $(SYNTAX)
45 TARGETS = virt-dmesg virt-dmesg.opt
48 XOBJS = virt_dmesg.cmx
52 virt-dmesg: $(OBJS) ../lib/virt_mem.cma
54 $(OCAMLCFLAGS) $(OCAMLCPACKAGES) $(OCAMLCLIBS) $(OBJS) -o $@
56 virt-dmesg.opt: $(XOBJS) ../lib/virt_mem.cmxa
58 $(OCAMLOPTFLAGS) $(OCAMLOPTPACKAGES) $(OCAMLOPTLIBS) $(XOBJS) -o $@
61 if [ -x virt-dmesg.opt ]; then \
62 $(INSTALL) -m 0755 virt-dmesg.opt $(DESTDIR)$(bindir)/virt-dmesg; \