Release coccinelle-0.1.6
[bpt/coccinelle.git] / popl / .#Makefile.1.5
CommitLineData
0708f913
C
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
23TARGET = popl
24
25SRC = ast_popl.ml asttopopl.ml insert_quantifiers.ml insert_befaft.ml \
26pretty_print_popl.ml popltoctl.ml popl.ml flag_popl.ml
27
28SYSLIBS=str.cma unix.cma
29LIBS=../commons/commons.cma ../globals/globals.cma
30
31INCLUDE_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
37CAMLC =ocamlc$(OPTBIN) -dtypes -g
38CAMLOPT=ocamlopt$(OPTBIN) $(OPTFLAGS)
39CAMLLEX = ocamllex$(OPTBIN)
40CAMLYACC= ocamlyacc
41CAMLDEP = ocamldep$(OPTBIN)
42CAMLMKTOP=ocamlmktop -g -custom
43
44
45
46LIB=$(TARGET).cma
47OPTLIB=$(LIB:.cma=.cmxa)
48
49OBJS = $(SRC:.ml=.cmo)
50OPTOBJS = $(SRC:.ml=.cmx)
51
52all: $(LIB)
53all.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
61clean::
62 rm -f $(LIB) $(TARGET).top
63
64
65$(OPTLIB): $(OPTOBJS)
66 $(CAMLOPT) -a -o $(OPTLIB) $(OPTOBJS)
67
68# clean rule for LIB.opt
69clean::
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
89clean::
90 rm -f *.cm[iox] *.o *.annot
91 rm -f *~ .*~ #*#
92
93depend:
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