Version 1.0.0-rc17 has been released. Some changes are:
[bpt/coccinelle.git] / popl09 / Makefile
1 # Copyright 2012, INRIA
2 # Julia Lawall, Gilles Muller
3 # Copyright 2010-2011, INRIA, University of Copenhagen
4 # Julia Lawall, Rene Rydhof Hansen, Gilles Muller, Nicolas Palix
5 # Copyright 2005-2009, Ecole des Mines de Nantes, University of Copenhagen
6 # Yoann Padioleau, Julia Lawall, Rene Rydhof Hansen, Henrik Stuart, Gilles Muller, Nicolas Palix
7 # This file is part of Coccinelle.
8 #
9 # Coccinelle is free software: you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation, according to version 2 of the License.
12 #
13 # Coccinelle is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Coccinelle. If not, see <http://www.gnu.org/licenses/>.
20 #
21 # The authors reserve the right to distribute this or future versions of
22 # Coccinelle under other licenses.
23
24
25 #note: if you add a file (a .mli or .ml), dont forget to do a make depend
26
27 ifneq ($(MAKECMDGOALS),distclean)
28 include ../Makefile.config
29 endif
30
31 TARGET = popl
32
33 OCAMLCFLAGS ?= -g
34 OPTFLAGS ?= -g
35
36 SRC = ast_popl.ml asttopopl.ml insert_quantifiers.ml \
37 pretty_print_popl.ml flag_popl.ml popltoctl.ml popl.ml
38
39 SYSLIBS=str.cma unix.cma
40 LIBS=../commons/commons.cma ../globals/globals.cma
41
42 INCLUDES = -I ../commons -I ../globals \
43 -I ../ctl -I ../parsing_cocci -I ../parsing_c -I ../engine
44
45 #The Caml compilers.
46 #for warning: -w A
47 #for profiling: -p -inline 0 with OCAMLOPT
48 OCAMLC_CMD=$(OCAMLC) $(OCAMLCFLAGS) $(INCLUDES)
49 OCAMLOPT_CMD=$(OCAMLOPT) $(OPTFLAGS) $(INCLUDES)
50 OCAMLDEP_CMD=$(OCAMLDEP) $(INCLUDES)
51 OCAMLMKTOP_CMD=$(OCAMLMKTOP) -g -custom $(INCLUDES)
52
53 LIB=$(TARGET).cma
54 OPTLIB=$(LIB:.cma=.cmxa)
55
56 OBJS = $(SRC:.ml=.cmo)
57 OPTOBJS = $(SRC:.ml=.cmx)
58
59 ifneq ($(FEATURE_OCAMLBUILD),yes)
60 all: $(LIB)
61 all.opt:
62 @$(MAKE) $(OPTLIB) BUILD_OPT=yes
63
64 $(TARGET).top: $(LIB)
65 $(OCAMLMKTOP_CMD) -o $(TARGET).top $(SYSLIBS) $(LIBS) $(OBJS)
66
67 $(LIB): $(OBJS)
68 $(OCAMLC_CMD) -a -o $(LIB) $(OBJS)
69
70 clean::
71 rm -f $(LIB) $(TARGET).top
72 else
73 all:
74 cd .. && $(OCAMLBUILD) popl09/popl09.cma
75
76 all.opt:
77 cd .. && $(OCAMLBUILD) popl09/popl09.cmxa
78
79 clean::
80 cd .. && $(OCAMLBUILD) -clean
81 endif
82
83
84 $(OPTLIB): $(OPTOBJS)
85 $(OCAMLOPT_CMD) -a -o $(OPTLIB) $(OPTOBJS)
86
87 # clean rule for LIB.opt
88 clean::
89 rm -f $(OPTLIB) $(LIB:.cma=.a)
90
91
92 .SUFFIXES:
93 .SUFFIXES: .ml .mli .cmo .cmi .cmx
94
95 .ml.cmo:
96 $(OCAMLC_CMD) -c $<
97
98 .mli.cmi:
99 $(OCAMLC_CMD) -c $<
100
101 .ml.cmx:
102 $(OCAMLOPT_CMD) -c $<
103
104
105 # clean rule for others files
106 clean::
107 rm -f *.cm[iox] *.o *.annot
108 rm -f *~ .*~ #*#
109 rm -f .depend
110
111 distclean: clean
112
113 .PHONEY: depend
114 .depend depend:
115 $(OCAMLDEP_CMD) *.mli *.ml > .depend
116
117 ifneq ($(MAKECMDGOALS),clean)
118 ifneq ($(MAKECMDGOALS),distclean)
119 ifneq ($(FEATURE_OCAMLBUILD),yes)
120 -include .depend
121 endif
122 endif
123 endif
124
125 include ../Makefile.common