Release coccinelle-0.1.6
[bpt/coccinelle.git] / popl09 / .#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 \
26pretty_print_popl.ml flag_popl.ml popltoctl.ml popl.ml
27
28SYSLIBS=str.cma unix.cma
29LIBS=../commons/commons.cma ../globals/globals.cma
30
31INCLUDES = -I ../commons -I ../globals \
32 -I ../ctl -I ../parsing_cocci -I ../parsing_c -I ../engine
33
34#The Caml compilers.
35#for warning: -w A
36#for profiling: -p -inline 0 with OCAMLOPT
37OCAMLCFLAGS ?= -g -dtypes
38OCAMLC =ocamlc$(OPTBIN) $(OCAMLCFLAGS) $(INCLUDES)
39OCAMLOPT = ocamlopt$(OPTBIN) $(OPTFLAGS) $(INCLUDES)
40OCAMLDEP = ocamldep$(OPTBIN) #$(INCLUDES)
41OCAMLMKTOP=ocamlmktop -g -custom
42
43
44
45LIB=$(TARGET).cma
46OPTLIB=$(LIB:.cma=.cmxa)
47
48OBJS = $(SRC:.ml=.cmo)
49OPTOBJS = $(SRC:.ml=.cmx)
50
51all: $(LIB)
52all.opt: $(OPTLIB)
53
54$(TARGET).top: $(LIB)
55 $(OCAMLMKTOP) -o $(TARGET).top $(SYSLIBS) $(LIBS) $(OBJS)
56
57$(LIB): $(OBJS)
58 $(OCAMLC) -a -o $(LIB) $(OBJS)
59
60clean::
61 rm -f $(LIB) $(TARGET).top
62
63
64$(OPTLIB): $(OPTOBJS)
65 $(OCAMLOPT) -a -o $(OPTLIB) $(OPTOBJS)
66
67# clean rule for LIB.opt
68clean::
69 rm -f $(OPTLIB) $(LIB:.cma=.a)
70
71
72.SUFFIXES:
73.SUFFIXES: .ml .mli .cmo .cmi .cmx
74
75.ml.cmo:
76 $(OCAMLC) -c $<
77
78.mli.cmi:
79 $(OCAMLC) -c $<
80
81.ml.cmx:
82 $(OCAMLOPT) -c $<
83
84
85
86
87# clean rule for others files
88clean::
89 rm -f *.cm[iox] *.o *.annot
90 rm -f *~ .*~ #*#
91
92depend:
93 $(OCAMLDEP) *.mli *.ml > .depend
94
95#clean::
96# rm -f .depend
97
98.depend:
99 $(OCAMLDEP) $(INCLUDE_PATH) *.mli *.ml > .depend
100
101-include .depend