b9de26b881ff7593b2b6161450e756e0342d96c2
[virt-mem.git] / ps / 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 MKDIR_P         = @MKDIR_P@
24 bindir          = @bindir@
25
26 SYNTAX          = -pp "camlp4o -I$$(ocamlc -where)/bitmatch bitmatch.cma pa_bitmatch.cmo"
27
28 #OCAMLCPACKAGES = -package unix,bigarray,extlib,libvirt,xml-light,bitmatch
29 OCAMLCPACKAGES  = -package unix,bigarray,extlib,libvirt,xml-light -I +bitmatch -I ../lib
30
31 ifneq ($(pkg_gettext),no)
32 OCAMLCPACKAGES  += -package gettext-stub
33 endif
34
35 OCAMLCFLAGS     = @OCAMLCFLAGS@ $(SYNTAX)
36 OCAMLCLIBS      = -linkpkg bitmatch.cma ../lib/virt_mem.cma
37
38 OCAMLOPTFLAGS   = @OCAMLOPTFLAGS@ $(SYNTAX)
39 OCAMLOPTPACKAGES = $(OCAMLCPACKAGES)
40 OCAMLOPTLIBS    = -linkpkg bitmatch.cmxa ../lib/virt_mem.cmxa
41
42 OCAMLDOCFLAGS   = -html -sort $(OCAMLCPACKAGES) $(SYNTAX)
43
44 OCAMLDEPFLAGS   = $(SYNTAX)
45
46 TARGETS         = virt-ps virt-ps.opt
47
48 OBJS            = virt_ps.cmo
49 XOBJS           = virt_ps.cmx
50
51 all:    $(TARGETS)
52
53 virt-ps: $(OBJS) ../lib/virt_mem.cma
54         ocamlfind ocamlc \
55           $(OCAMLCFLAGS) $(OCAMLCPACKAGES) $(OCAMLCLIBS) $(OBJS) -o $@
56
57 virt-ps.opt: $(XOBJS) ../lib/virt_mem.cmxa
58         ocamlfind ocamlopt \
59           $(OCAMLOPTFLAGS) $(OCAMLOPTPACKAGES) $(OCAMLOPTLIBS) $(XOBJS) -o $@
60
61 install:
62         if [ -x virt-ps.opt ]; then \
63           $(MKDIR_P) $(DESTDIR)$(bindir); \
64           $(INSTALL) -m 0755 virt-ps.opt $(DESTDIR)$(bindir)/virt-ps; \
65         fi
66
67 include ../Make.rules