Release coccinelle-0.2.4rc3
[bpt/coccinelle.git] / engine / Makefile
1 # Copyright 2010, INRIA, University of Copenhagen
2 # Julia Lawall, Rene Rydhof Hansen, Gilles Muller, Nicolas Palix
3 # Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
4 # Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
5 # This file is part of Coccinelle.
6 #
7 # Coccinelle is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, according to version 2 of the License.
10 #
11 # Coccinelle is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
18 #
19 # The authors reserve the right to distribute this or future versions of
20 # Coccinelle under other licenses.
21
22
23 ##############################################################################
24 # Variables
25 ##############################################################################
26 #TARGET=matcher
27 -include ../Makefile.config
28
29 TARGET=cocciengine
30 CTLTARGET=engine
31
32 SRC= flag_matcher.ml lib_engine.ml pretty_print_engine.ml \
33 check_exhaustive_pattern.ml \
34 check_reachability.ml \
35 c_vs_c.ml isomorphisms_c_c.ml \
36 cocci_vs_c.ml pattern_c.ml sgrep.ml transformation_c.ml \
37 asttomember.ml asttoctl2.ml ctltotex.ml \
38 postprocess_transinfo.ml ctlcocci_integration.ml
39
40 #c_vs_c.ml
41 #SRC= flag_matcher.ml \
42 # c_vs_c.ml cocci_vs_c.ml \
43 # lib_engine.ml \
44 # pattern_c.ml transformation_c.ml
45
46 #LIBS=../commons/commons.cma ../parsing_c/parsing_c.cma
47 #INCLUDES= -I ../commons -I ../parsing_c
48 INCLUDES = -I ../commons -I ../commons/ocamlextra -I ../globals \
49 -I ../ctl -I ../parsing_cocci -I ../parsing_c
50 LIBS=../commons/commons.cma ../globals/globals.cma \
51 ../ctl/ctl.cma ../parsing_c/parsing_c.cma ../parsing_cocci/cocci_parser.cma
52
53 SYSLIBS= str.cma unix.cma
54
55
56 # just to test asttoctl
57 # CTLSOURCES = lib_engine.ml pretty_print_engine.ml asttoctl.ml ctltotex.ml \
58 # main.ml
59
60 ##############################################################################
61 # Generic variables
62 ##############################################################################
63
64 #for warning: -w A
65 #for profiling: -p -inline 0 with OCAMLOPT
66 OCAMLCFLAGS ?= -g -dtypes
67
68 OCAMLC=ocamlc$(OPTBIN) $(OCAMLCFLAGS) $(INCLUDES)
69 OCAMLOPT=ocamlopt$(OPTBIN) $(OPTFLAGS) $(INCLUDES)
70 OCAMLLEX=ocamllex$(OPTBIN) #-ml
71 OCAMLYACC=ocamlyacc -v
72 OCAMLDEP=ocamldep$(OPTBIN) $(INCLUDES)
73 OCAMLMKTOP=ocamlmktop -g -custom $(INCLUDES)
74
75
76 OBJS = $(SRC:.ml=.cmo)
77 OPTOBJS = $(SRC:.ml=.cmx)
78
79
80 ##############################################################################
81 # Top rules
82 ##############################################################################
83 all: $(TARGET).cma
84 all.opt: $(TARGET).cmxa
85
86 $(TARGET).cma: $(OBJS)
87 $(OCAMLC) -a -o $(TARGET).cma $(OBJS)
88
89 $(TARGET).cmxa: $(OPTOBJS) $(LIBS:.cma=.cmxa)
90 $(OCAMLOPT) -a -o $(TARGET).cmxa $(OPTOBJS)
91
92 $(TARGET).top: $(OBJS) $(LIBS)
93 $(OCAMLMKTOP) -o $(TARGET).top $(SYSLIBS) $(LIBS) $(OBJS)
94
95 clean::
96 rm -f $(TARGET).top
97
98
99
100 ##############################################################################
101 # Pad's rules
102 ##############################################################################
103
104 ##############################################################################
105 # Generic rules
106 ##############################################################################
107
108 .SUFFIXES: .ml .mli .cmo .cmi .cmx
109
110 .ml.cmo:
111 $(OCAMLC) -c $<
112 .mli.cmi:
113 $(OCAMLC) -c $<
114 .ml.cmx:
115 $(OCAMLOPT) -c $<
116
117 .ml.mldepend:
118 $(OCAMLC) -i $<
119
120 clean::
121 rm -f *.cm[ioxa] *.o *.a *.cmxa *.annot
122 rm -f *~ .*~ gmon.out #*#
123
124 distclean::
125 rm -f .depend
126
127 beforedepend::
128
129 depend:: beforedepend
130 $(OCAMLDEP) *.mli *.ml > .depend
131
132 -include .depend