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@
26 pkg_gettext = @pkg_gettext@
29 CFLAGS = @CFLAGS@ -fPIC -Wall -Werror -I$(OCAMLLIB) -I@top_srcdir@
31 SYNTAX = -syntax bitstring.syntax
33 OCAMLCPACKAGES = -package unix,bigarray,extlib,libvirt,xml-light,bitstring.syntax
35 ifneq ($(pkg_gettext),no)
36 OCAMLCPACKAGES += -package gettext-stub
39 OCAMLCFLAGS = @OCAMLCFLAGS@ $(SYNTAX)
42 OCAMLOPTFLAGS = @OCAMLOPTFLAGS@ $(SYNTAX)
43 OCAMLOPTPACKAGES = $(OCAMLCPACKAGES)
44 OCAMLOPTLIBS = -linkpkg
46 OCAMLDEPFLAGS = $(SYNTAX)
48 TARGETS = virt_mem.cma virt_mem.cmxa
50 OBJS = virt_mem_gettext.cmo \
51 virt_mem_version.cmo \
52 virt_mem_kernels.cmo \
57 virt_mem_list_head.cmo \
58 kernel_task_struct.cmo \
59 kernel_net_device.cmo \
62 virt_mem_kallsyms.cmo \
63 virt_mem_utsname.cmo \
65 virt_mem_net_devices.cmo \
67 virt_mem_capture.cmo \
70 XOBJS = $(OBJS:%.cmo=%.cmx)
75 ocamlmklib -o virt_mem $^
77 virt_mem.cmxa: $(XOBJS)
78 ocamlmklib -o virt_mem $^
80 # Just for testing Virt_mem_mmap module:
81 test_mmap: virt_mem_utils.cmx virt_mem_mmap_c.o virt_mem_mmap.cmx test_mmap.cmx
83 $(OCAMLOPTFLAGS) $(OCAMLOPTPACKAGES) $(OCAMLOPTLIBS) \
84 bitstring.cmxa -o $@ $^