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