Change to using internal format for kernel structures.
[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 OCAMLLIB        = @OCAMLLIB@
25
26 pkg_gettext     = @pkg_gettext@
27
28 CC              = @CC@
29 CFLAGS          = @CFLAGS@ -fPIC -Wall -Werror -I$(OCAMLLIB) -I@top_srcdir@
30
31 SYNTAX          = -syntax bitstring.syntax
32
33 OCAMLCPACKAGES  = -package unix,bigarray,extlib,libvirt,xml-light,bitstring.syntax
34
35 ifneq ($(pkg_gettext),no)
36 OCAMLCPACKAGES  += -package gettext-stub
37 endif
38
39 OCAMLCFLAGS     = @OCAMLCFLAGS@ $(SYNTAX)
40 OCAMLCLIBS      = -linkpkg
41
42 OCAMLOPTFLAGS   = @OCAMLOPTFLAGS@ $(SYNTAX)
43 OCAMLOPTPACKAGES = $(OCAMLCPACKAGES)
44 OCAMLOPTLIBS    = -linkpkg
45
46 OCAMLDEPFLAGS   = $(SYNTAX)
47
48 TARGETS         = virt_mem.cma virt_mem.cmxa
49
50 OBJS            = virt_mem_gettext.cmo \
51                   virt_mem_version.cmo \
52                   virt_mem_kernels.cmo \
53                   virt_mem_utils.cmo \
54                   virt_mem_mmap_c.o \
55                   virt_mem_mmap.cmo \
56                   virt_mem_types.cmo \
57                   kernel_task_struct.cmo \
58                   kernel_net_device.cmo \
59                   kernel_net.cmo \
60                   virt_mem_ksyms.cmo \
61                   virt_mem_kallsyms.cmo \
62                   virt_mem_utsname.cmo \
63                   virt_mem_tasks.cmo \
64                   virt_mem_net_devices.cmo \
65                   virt_mem.cmo \
66                   virt_mem_capture.cmo
67 XOBJS           = $(OBJS:%.cmo=%.cmx)
68
69 all:    $(TARGETS)
70
71 virt_mem.cma: $(OBJS)
72         ocamlmklib -o virt_mem $^
73
74 virt_mem.cmxa: $(XOBJS)
75         ocamlmklib -o virt_mem $^
76
77 # Just for testing Virt_mem_mmap module:
78 test_mmap: virt_mem_utils.cmx virt_mem_mmap_c.o virt_mem_mmap.cmx test_mmap.cmx
79         ocamlfind ocamlopt \
80           $(OCAMLOPTFLAGS) $(OCAMLOPTPACKAGES) $(OCAMLOPTLIBS) \
81           bitstring.cmxa -o $@ $^
82
83 install:
84
85 include ../Make.rules