3 # Copyright (C) 2008 Red Hat Inc., Richard W.M. Jones
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.
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.
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.
19 PACKAGE := @PACKAGE_NAME@
20 VERSION := @PACKAGE_VERSION@
23 HAVE_PERLDOC := @HAVE_PERLDOC@
25 OCAML_WORD_SIZE := @OCAML_WORD_SIZE@
28 exec_prefix = @exec_prefix@
31 OCAMLCPACKAGES := -package unix,extlib,bitmatch.syntax
33 #----------------------------------------------------------------------
34 # Build up the list of object files.
40 OBJS += diskimage_ext2.cmo \
41 diskimage_linux_swap.cmo \
42 diskimage_linux_swsuspend.cmo \
45 diskimage_lvm2_metadata.cmo \
46 diskimage_lvm2_parser.cmo \
47 diskimage_lvm2_lexer.cmo \
53 XOBJS := $(OBJS:.cmo=.cmx)
55 #----------------------------------------------------------------------
57 SYNTAX := -syntax bitmatch.syntax
59 OCAMLCFLAGS := @OCAMLCFLAGS@ $(SYNTAX)
60 OCAMLCLIBS := -linkpkg
62 OCAMLOPTPACKAGES := $(OCAMLCPACKAGES)
63 OCAMLOPTFLAGS := @OCAMLOPTFLAGS@ $(SYNTAX)
64 OCAMLOPTLIBS := $(OCAMLCLIBS)
66 OCAMLDEPFLAGS := $(SYNTAX)
68 OCAMLDOCFLAGS += $(SYNTAX) -I +extlib -I +bitmatch
69 OCAMLDOCFILES := int63.mli diskimage.mli
71 BYTE_TARGETS := diskimage.cma
72 OPT_TARGETS := diskimage.cmxa
78 diskimage.cma: $(OBJS)
79 ocamlfind ocamlc $(OCAMLCPACKAGES) $(OCAMLCFLAGS) $(OCAMLCLIBS) \
82 diskimage.cmxa: $(XOBJS)
84 $(OCAMLOPTPACKAGES) $(OCAMLOPTFLAGS) \
87 # 'make depend' doesn't catch these dependencies because the .mli file
89 diskimage_lvm2_parser.cmo: diskimage_lvm2_parser.cmi
90 diskimage_lvm2_parser.cmx: diskimage_lvm2_parser.cmi
91 diskimage_lvm2_parser.cmi: diskimage_lvm2_parser.mli
93 diskimage_lvm2_lexer.cmo: diskimage_impl.cmi
94 diskimage_lvm2_parser.cmo: diskimage_impl.cmi
95 diskimage_lvm2_lexer.cmx: diskimage_impl.cmi
96 diskimage_lvm2_parser.cmx: diskimage_impl.cmi
98 # Int63 module is defined differently on 32 and 64 bit platforms.
99 int63.ml: int63_on_$(OCAML_WORD_SIZE).ml Makefile
101 echo "(* WARNING: THIS FILE IS GENERATED FROM $< *)" | \
104 int63.mli: int63_on_$(OCAML_WORD_SIZE).mli Makefile
106 echo "(* WARNING: THIS FILE IS GENERATED FROM $< *)" | \
111 int63.cmi: int63.ml int63.mli
113 #test_int63.opt: int63.cmx test_int63.cmx
114 # $(OCAMLFIND) ocamlopt $^ -o $@
117 ocamlfind install diskimage META *.mli *.cma *.cmx *.cmxa *.a
119 include ../Make.rules