0ce95e228a89c348225ff0952d7880480746e849
[virt-mem.git] / Make.rules.in
1 # virt-mem -*- Makefile -*-
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 # This file is included by Makefiles in subdirectories.
20
21 OCAMLFIND       = @OCAMLFIND@
22 OCAMLDEP        = @OCAMLDEP@
23 OCAMLC          = @OCAMLC@
24 OCAMLOPT        = @OCAMLOPT@
25
26 OCAMLDOC        = @OCAMLDOC@
27 OCAMLDOCFLAGS   += -html -sort
28
29 # Common rules for building OCaml objects.
30
31 .mli.cmi:
32         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(OCAMLCPACKAGES) -c $<
33 .ml.cmo:
34         $(OCAMLFIND) ocamlc $(OCAMLCFLAGS) $(OCAMLCPACKAGES) -c $<
35 .ml.cmx:
36         $(OCAMLFIND) ocamlopt $(OCAMLOPTFLAGS) $(OCAMLOPTPACKAGES) -c $<
37
38 %.ml %.mli: %.mly
39         ocamlyacc $<
40 .mll.ml:
41         ocamllex $<
42
43 # Dependencies.
44
45 depend: .depend
46
47 .depend: $(wildcard *.mli) $(wildcard *.ml)
48         rm -f .depend
49         $(OCAMLFIND) ocamldep $(OCAMLCPACKAGES) $(OCAMLDEPFLAGS) $^ > $@
50
51 ifeq ($(wildcard .depend),.depend)
52 include .depend
53 endif
54
55 # Developer documentation (in html/ subdirectory).
56
57 ifneq ($(OCAMLDOC),)
58 ifneq ($(OCAMLDOCFILES),)
59 doc:
60         rm -rf html
61         mkdir html
62         -$(OCAMLDOC) $(OCAMLDOCFLAGS) -d html $(OCAMLDOCFILES)
63 endif
64 endif
65
66 .PHONY: depend dist check-manifest dpkg doc
67
68 .SUFFIXES:      .cmo .cmi .cmx .ml .mli .mll .mly