Release coccinelle-0.2.4rc5
[bpt/coccinelle.git] / popl / 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 #note: if you add a file (a .mli or .ml), dont forget to do a make depend
24
25 -include ../Makefile.config
26
27 TARGET = popl
28
29 SRC = ast_popl.ml asttopopl.ml insert_quantifiers.ml insert_befaft.ml \
30 pretty_print_popl.ml popltoctl.ml popl.ml flag_popl.ml
31
32 SYSLIBS=str.cma unix.cma
33 LIBS=../commons/commons.cma ../globals/globals.cma
34
35 INCLUDE_PATH = -I ../commons -I ../globals \
36 -I ../ctl -I ../parsing_c -I ../parsing_cocci -I ../engine
37
38 #The Caml compilers.
39 #for warning: -w A
40 #for profiling: -p -inline 0 with OCAMLOPT
41 CAMLC =ocamlc$(OPTBIN) -dtypes -g
42 CAMLOPT=ocamlopt$(OPTBIN) $(OPTFLAGS)
43 CAMLLEX = ocamllex$(OPTBIN)
44 CAMLYACC= ocamlyacc
45 CAMLDEP = ocamldep$(OPTBIN)
46 CAMLMKTOP=ocamlmktop -g -custom
47
48
49
50 LIB=$(TARGET).cma
51 OPTLIB=$(LIB:.cma=.cmxa)
52
53 OBJS = $(SRC:.ml=.cmo)
54 OPTOBJS = $(SRC:.ml=.cmx)
55
56 all: $(LIB)
57 all.opt: $(OPTLIB)
58
59 $(TARGET).top: $(LIB)
60 $(CAMLMKTOP) -o $(TARGET).top $(SYSLIBS) $(LIBS) $(OBJS)
61
62 $(LIB): $(OBJS)
63 $(CAMLC) -a -o $(LIB) $(OBJS)
64
65 clean::
66 rm -f $(LIB) $(TARGET).top
67
68
69 $(OPTLIB): $(OPTOBJS)
70 $(CAMLOPT) -a -o $(OPTLIB) $(OPTOBJS)
71
72 # clean rule for LIB.opt
73 clean::
74 rm -f $(OPTLIB) $(LIB:.cma=.a)
75
76
77 .SUFFIXES:
78 .SUFFIXES: .ml .mli .cmo .cmi .cmx
79
80 .ml.cmo:
81 $(CAMLC) $(INCLUDE_PATH) -c $<
82
83 .mli.cmi:
84 $(CAMLC) $(INCLUDE_PATH) -c $<
85
86 .ml.cmx:
87 $(CAMLOPT) $(INCLUDE_PATH) -c $<
88
89
90
91
92 # clean rule for others files
93 clean::
94 rm -f *.cm[iox] *.o *.annot
95 rm -f *~ .*~ #*#
96
97 depend:
98 $(CAMLDEP) $(INCLUDE_PATH) *.mli *.ml > .depend
99
100 distclean::
101 rm -f .depend
102
103 .depend:
104 $(CAMLDEP) $(INCLUDE_PATH) *.mli *.ml > .depend
105
106 -include .depend