2254a1e62bc1934bff7450d2f5e7a80a959b4491
[bpt/coccinelle.git] / popl / .#Makefile.1.5
1 # Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
2 # Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller
3 # This file is part of Coccinelle.
4 #
5 # Coccinelle 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, according to version 2 of the License.
8 #
9 # Coccinelle is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
16 #
17 # The authors reserve the right to distribute this or future versions of
18 # Coccinelle under other licenses.
19
20
21 #note: if you add a file (a .mli or .ml), dont forget to do a make depend
22
23 TARGET = popl
24
25 SRC = ast_popl.ml asttopopl.ml insert_quantifiers.ml insert_befaft.ml \
26 pretty_print_popl.ml popltoctl.ml popl.ml flag_popl.ml
27
28 SYSLIBS=str.cma unix.cma
29 LIBS=../commons/commons.cma ../globals/globals.cma
30
31 INCLUDE_PATH = -I ../commons -I ../globals \
32 -I ../ctl -I ../parsing_c -I ../parsing_cocci -I ../engine
33
34 #The Caml compilers.
35 #for warning: -w A
36 #for profiling: -p -inline 0 with OCAMLOPT
37 CAMLC =ocamlc$(OPTBIN) -dtypes -g
38 CAMLOPT=ocamlopt$(OPTBIN) $(OPTFLAGS)
39 CAMLLEX = ocamllex$(OPTBIN)
40 CAMLYACC= ocamlyacc
41 CAMLDEP = ocamldep$(OPTBIN)
42 CAMLMKTOP=ocamlmktop -g -custom
43
44
45
46 LIB=$(TARGET).cma
47 OPTLIB=$(LIB:.cma=.cmxa)
48
49 OBJS = $(SRC:.ml=.cmo)
50 OPTOBJS = $(SRC:.ml=.cmx)
51
52 all: $(LIB)
53 all.opt: $(OPTLIB)
54
55 $(TARGET).top: $(LIB)
56 $(CAMLMKTOP) -o $(TARGET).top $(SYSLIBS) $(LIBS) $(OBJS)
57
58 $(LIB): $(OBJS)
59 $(CAMLC) -a -o $(LIB) $(OBJS)
60
61 clean::
62 rm -f $(LIB) $(TARGET).top
63
64
65 $(OPTLIB): $(OPTOBJS)
66 $(CAMLOPT) -a -o $(OPTLIB) $(OPTOBJS)
67
68 # clean rule for LIB.opt
69 clean::
70 rm -f $(OPTLIB) $(LIB:.cma=.a)
71
72
73 .SUFFIXES:
74 .SUFFIXES: .ml .mli .cmo .cmi .cmx
75
76 .ml.cmo:
77 $(CAMLC) $(INCLUDE_PATH) -c $<
78
79 .mli.cmi:
80 $(CAMLC) $(INCLUDE_PATH) -c $<
81
82 .ml.cmx:
83 $(CAMLOPT) $(INCLUDE_PATH) -c $<
84
85
86
87
88 # clean rule for others files
89 clean::
90 rm -f *.cm[iox] *.o *.annot
91 rm -f *~ .*~ #*#
92
93 depend:
94 $(CAMLDEP) $(INCLUDE_PATH) *.mli *.ml > .depend
95
96 #clean::
97 # rm -f .depend
98
99 .depend:
100 $(CAMLDEP) $(INCLUDE_PATH) *.mli *.ml > .depend
101
102 -include .depend