Coccinelle release-1.0.0-rc11
[bpt/coccinelle.git] / globals / Makefile
1 # Copyright 2012, INRIA
2 # Julia Lawall, Gilles Muller
3 # Copyright 2010-2011, INRIA, University of Copenhagen
4 # Julia Lawall, Rene Rydhof Hansen, Gilles Muller, Nicolas Palix
5 # Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
6 # Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
7 # This file is part of Coccinelle.
8 #
9 # Coccinelle is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, according to version 2 of the License.
12 #
13 # Coccinelle is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
20 #
21 # The authors reserve the right to distribute this or future versions of
22 # Coccinelle under other licenses.
23
24
25
26 -include ../Makefile.config
27
28 ##############################################################################
29 # Variables
30 ##############################################################################
31 TARGET=globals
32
33 SRC= flag.ml config.ml iteration.ml $(REGEXP_FILE) regexp.ml
34
35 LIBS=
36 INCLUDEDIRS= ../commons $(PCREDIR)
37
38 ##############################################################################
39 # Generic variables
40 ##############################################################################
41
42 INCLUDES=$(INCLUDEDIRS:%=-I %)
43
44 OCAMLCFLAGS ?= -g -dtypes
45 OCAMLC =ocamlc$(OPTBIN) $(OCAMLCFLAGS) $(INCLUDES)
46 OCAMLOPT = ocamlopt$(OPTBIN) $(OPTFLAGS) $(INCLUDES)
47 OCAMLDEP = ocamldep$(OPTBIN) $(INCLUDES)
48 OCAMLMKTOP=ocamlmktop -g -custom $(INCLUDES)
49
50 OBJS= $(SRC:.ml=.cmo)
51 OPTOBJS= $(SRC:.ml=.cmx)
52
53 ##############################################################################
54 # Top rules
55 ##############################################################################
56 all: $(TARGET).cma
57
58 all.opt: $(TARGET).cmxa
59
60 $(TARGET).cma: $(LIBS) $(OBJS)
61 $(OCAMLC) -a -o $(TARGET).cma $(OBJS)
62
63 $(TARGET).cmxa: $(LIBS:.cma=.cmxa) $(OPTOBJS)
64 $(OCAMLOPT) -a -o $(TARGET).cmxa $(OPTOBJS)
65
66 ##############################################################################
67 # Developer rules
68 ##############################################################################
69 .SUFFIXES: .ml .mli .cmo .cmi .cmx
70
71 .ml.cmo:
72 $(OCAMLC) -c $<
73 .mli.cmi:
74 $(OCAMLC) -c $<
75 .ml.cmx:
76 $(OCAMLOPT) -c $<
77
78 .ml.mldepend:
79 $(OCAMLC) -i $<
80
81 clean::
82 rm -f *.cm[ioxa] *.o *.a *.cmxa *.annot
83 rm -f *~ .*~ gmon.out #*#
84
85 distclean::
86 rm -f .depend
87
88 beforedepend::
89
90 depend:: beforedepend
91 $(OCAMLDEP) *.mli *.ml > .depend
92
93 -include .depend
94
95
96
97