9421ffc7280db4dd59123f926193effc6c793833
[virt-df.git] / diskzip / Makefile.in
1 # diskzip
2 # @configure_input@
3 # Copyright (C) 2007-2008 Red Hat Inc., Richard W.M. Jones
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program 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
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 PACKAGE         := @PACKAGE_NAME@
20 VERSION         := @PACKAGE_VERSION@
21
22 INSTALL         := @INSTALL@
23 HAVE_PERLDOC    := @HAVE_PERLDOC@
24
25 prefix          = @prefix@
26 exec_prefix     = @exec_prefix@
27 bindir          = @bindir@
28
29 pkg_gettext     = @pkg_gettext@
30
31 OCAMLCPACKAGES  := -package unix,extlib,bitmatch.syntax,bitmatch -I ../lib
32
33 ifneq ($(pkg_gettext),no)
34 OCAMLCPACKAGES  += -package gettext-stub
35 endif
36
37 OBJS            := diskzip_gettext.cmo diskzip.cmo
38 XOBJS           := $(OBJS:.cmo=.cmx)
39
40 SYNTAX          := -syntax bitmatch.syntax
41
42 OCAMLCFLAGS     := @OCAMLCFLAGS@ $(SYNTAX)
43 OCAMLCLIBS      := -linkpkg diskimage.cma
44
45 OCAMLOPTPACKAGES := $(OCAMLCPACKAGES)
46 OCAMLOPTFLAGS   := @OCAMLOPTFLAGS@ $(SYNTAX)
47 OCAMLOPTLIBS    := -linkpkg diskimage.cmxa
48
49 OCAMLDEPFLAGS   := $(SYNTAX)
50
51 OCAMLDOCFLAGS   := $(SYNTAX) -I +extlib -I +bitmatch -I ../lib
52 OCAMLDOCFILES   := diskzip.ml
53
54 BYTE_TARGETS    := diskzip
55 OPT_TARGETS     := diskzip.opt
56
57 ifeq ($(HAVE_PERLDOC),perldoc)
58 BYTE_TARGETS    += diskzip.1 diskzip.txt
59 endif
60
61 all: $(BYTE_TARGETS)
62
63 opt: $(OPT_TARGETS)
64
65 diskzip: $(OBJS) ../lib/diskimage.cma
66         ocamlfind ocamlc $(OCAMLCPACKAGES) $(OCAMLCFLAGS) $(OCAMLCLIBS) \
67           -o $@ $(OBJS)
68
69 diskzip.opt: $(XOBJS) ../lib/diskimage.cmxa
70         ocamlfind ocamlopt \
71           $(OCAMLOPTPACKAGES) $(OCAMLOPTFLAGS) $(OCAMLOPTLIBS) \
72           -o $@ $(XOBJS)
73
74 # Manual page.
75 ifeq ($(HAVE_PERLDOC),perldoc)
76 diskzip.1: diskzip.pod
77         pod2man -c "Disk images" --release "$(PACKAGE)-$(VERSION)" \
78                 $< > $@
79
80 diskzip.txt: diskzip.pod
81         pod2text $< > $@
82 endif
83
84 install:
85         if [ -x diskzip.opt ]; then \
86           mkdir -p $(DESTDIR)$(bindir); \
87           $(INSTALL) -m 0755 diskzip.opt $(DESTDIR)$(bindir)/diskzip; \
88         fi
89
90 include ../Make.rules