Release coccinelle-0.2.3rc4
[bpt/coccinelle.git] / Makefile
CommitLineData
90aeb998
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
9f8e26f4
C
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 23
34e49164
C
24#############################################################################
25# Configuration section
26#############################################################################
27
28-include Makefile.config
c3e37e97 29-include /etc/lsb-release
34e49164 30
b1b2de81 31VERSION=$(shell cat globals/config.ml.in |grep version |perl -p -e 's/.*"(.*)".*/$$1/;')
951c7801 32CCVERSION=$(shell cat scripts/coccicheck/README |grep "Coccicheck version" |perl -p -e 's/.*version (.*)[ ]*/$$1/;')
c3e37e97
C
33PKGVERSION=$(shell dpkg-parsechangelog -ldebian/changelog.$(DISTRIB_CODENAME) 2> /dev/null \
34 | sed -n 's/^Version: \(.*\)/\1/p' )
34e49164
C
35
36##############################################################################
37# Variables
38##############################################################################
39TARGET=spatch
c3e37e97 40PRJNAME=coccinelle
34e49164
C
41
42SRC=flag_cocci.ml cocci.ml testing.ml test.ml main.ml
43
34e49164 44ifeq ($(FEATURE_PYTHON),1)
90aeb998 45PYCMA=pycaml.cma
b1b2de81 46# the following is essential for Coccinelle to compile under gentoo (weird)
90aeb998 47#OPTLIBFLAGS=-cclib dllpycaml_stubs.so
34e49164
C
48else
49PYCMA=
90aeb998 50endif
34e49164 51OPTLIBFLAGS=
90aeb998
C
52
53ifeq ("$(SEXPDIR)","ocamlsexp")
54SEXPLIB=sexplib.cmo
55OPTSEXPLIB=sexplib.cmx
56else
57SEXPLIB=sexplib.cma
58OPTSEXPLIB=sexplib.cmxa
34e49164
C
59endif
60
b1b2de81 61SEXPSYSCMA=bigarray.cma nums.cma
34e49164 62
aba5c457 63SYSLIBS=str.cma unix.cma $(SEXPSYSCMA) $(PYCMA) dynlink.cma # threads.cma
b1b2de81 64LIBS=commons/commons.cma \
90aeb998 65 commons/commons_sexp.cma \
b1b2de81 66 globals/globals.cma \
34e49164
C
67 ctl/ctl.cma \
68 parsing_cocci/cocci_parser.cma parsing_c/parsing_c.cma \
951c7801 69 engine/cocciengine.cma popl09/popl.cma \
174d1640 70 extra/extra.cma python/coccipython.cma ocaml/cocciocaml.cma
90aeb998
C
71
72# Should we use the local version of pycaml
73ifeq ("$(PYCAMLDIR)","pycaml")
74LOCALPYCAML=pycaml
75else
76LOCALPYCAML=
77endif
78
79# Should we use the local version of menhirLib
174d1640
C
80ifeq ("$(MENHIRDIR)","menhirlib")
81LOCALMENHIR=menhirlib
90aeb998
C
82else
83LOCALMENHIR=
84endif
85
86# Should we use the local version of ocamlsexp
87ifeq ("$(SEXPDIR)","ocamlsexp")
88LOCALSEXP=ocamlsexp
89else
90LOCALSEXP=
91endif
34e49164 92
174d1640 93# used for depend: and a little for rec & rec.opt
90aeb998
C
94MAKESUBDIRS=$(LOCALPYCAML) $(LOCALSEXP) commons \
95 globals $(LOCALMENHIR) ctl parsing_cocci parsing_c \
174d1640
C
96 engine popl09 extra python ocaml
97
98# used for clean:
99# It is like MAKESUBDIRS but also
100# force cleaning of local library copies
101CLEANSUBDIRS=pycaml ocamlsexp commons \
102 globals menhirlib ctl parsing_cocci parsing_c \
103 engine popl09 extra python ocaml
90aeb998
C
104
105INCLUDEDIRSDEP=commons commons/ocamlextra $(LOCALSEXP) \
106 globals $(LOCALMENHIR) $(LOCALPYCAML) ctl \
174d1640 107 parsing_cocci parsing_c engine popl09 extra python ocaml
34e49164 108
90aeb998
C
109INCLUDEDIRS=$(INCLUDEDIRSDEP) $(SEXPDIR) $(MENHIRDIR) $(PYCAMLDIR)
110
34e49164
C
111##############################################################################
112# Generic variables
113##############################################################################
114
115INCLUDES=$(INCLUDEDIRS:%=-I %)
116
117OBJS= $(SRC:.ml=.cmo)
118OPTOBJS= $(SRC:.ml=.cmx)
119
120EXEC=$(TARGET)
121
122##############################################################################
123# Generic ocaml variables
124##############################################################################
125
ae4735db 126OCAMLCFLAGS=
34e49164
C
127
128# for profiling add -p -inline 0
129# but 'make forprofiling' below does that for you.
130# This flag is also used in subdirectories so don't change its name here.
708f4980
C
131# To enable backtrace support for native code, you need to put -g in OPTFLAGS
132# to also link with -g, but even in 3.11 the backtrace support seems buggy so
133# not worth it.
34e49164 134OPTFLAGS=
34e49164 135
34e49164 136OCAMLC=ocamlc$(OPTBIN) $(OCAMLCFLAGS) $(INCLUDES)
faf9a90c 137OCAMLOPT=ocamlopt$(OPTBIN) $(OPTFLAGS) $(INCLUDES)
34e49164
C
138OCAMLLEX=ocamllex #-ml # -ml for debugging lexer, but slightly slower
139OCAMLYACC=ocamlyacc -v
90aeb998 140OCAMLDEP=ocamldep $(INCLUDEDIRSDEP:%=-I %)
34e49164
C
141OCAMLMKTOP=ocamlmktop -g -custom $(INCLUDES)
142
143# can also be set via 'make static'
144STATIC= #-ccopt -static
145
146# can also be unset via 'make purebytecode'
147BYTECODE_STATIC=-custom
148
149##############################################################################
150# Top rules
151##############################################################################
b1b2de81
C
152.PHONY:: all all.opt byte opt top clean distclean configure
153.PHONY:: $(MAKESUBDIRS) $(MAKESUBDIRS:%=%.opt) subdirs subdirs.opt
154
708f4980 155all: Makefile.config byte preinstall
b1b2de81
C
156
157opt: all.opt
708f4980 158all.opt: opt-compil preinstall
faf9a90c 159
708f4980 160world: preinstall
b1b2de81 161 $(MAKE) byte
708f4980 162 $(MAKE) opt-compil
b1b2de81
C
163
164byte: .depend
faf9a90c
C
165 $(MAKE) subdirs
166 $(MAKE) $(EXEC)
167
b1b2de81 168opt-compil: .depend
faf9a90c
C
169 $(MAKE) subdirs.opt
170 $(MAKE) $(EXEC).opt
171
485bce71 172top: $(EXEC).top
34e49164 173
0708f913 174subdirs:
b1b2de81 175 +for D in $(MAKESUBDIRS); do $(MAKE) $$D || exit 1 ; done
90aeb998 176 $(MAKE) -C commons sexp OCAMLCFLAGS="$(OCAMLCFLAGS)"
0708f913
C
177
178subdirs.opt:
b1b2de81 179 +for D in $(MAKESUBDIRS); do $(MAKE) $$D.opt || exit 1 ; done
aba5c457 180 $(MAKE) -C commons sexp.opt OPTFLAGS="$(OPTFLAGS)"
faf9a90c
C
181
182$(MAKESUBDIRS):
183 $(MAKE) -C $@ OCAMLCFLAGS="$(OCAMLCFLAGS)" all
184
185$(MAKESUBDIRS:%=%.opt):
aba5c457 186 $(MAKE) -C $(@:%.opt=%) OPTFLAGS="$(OPTFLAGS)" all.opt
faf9a90c 187
b1b2de81 188#dependencies:
0708f913
C
189# commons:
190# globals:
191# menhirlib:
192# parsing_cocci: commons globals menhirlib
193# parsing_c:parsing_cocci
194# ctl:globals commons
195# engine: parsing_cocci parsing_c ctl
951c7801 196# popl09:engine
0708f913
C
197# extra: parsing_cocci parsing_c ctl
198# pycaml:
199# python:pycaml parsing_cocci parsing_c
faf9a90c 200
34e49164 201clean::
174d1640 202 set -e; for i in $(CLEANSUBDIRS); do $(MAKE) -C $$i $@; done
c3e37e97 203 $(MAKE) -C demos/spp $@
34e49164 204
0708f913
C
205$(LIBS): $(MAKESUBDIRS)
206$(LIBS:.cma=.cmxa): $(MAKESUBDIRS:%=%.opt)
faf9a90c
C
207
208$(OBJS):$(LIBS)
209$(OPTOBJS):$(LIBS:.cma=.cmxa)
210
34e49164 211$(EXEC): $(LIBS) $(OBJS)
90aeb998 212 $(OCAMLC) $(BYTECODE_STATIC) -o $@ $(SYSLIBS) $(SEXPLIB) $^
34e49164 213
faf9a90c 214$(EXEC).opt: $(LIBS:.cma=.cmxa) $(OPTOBJS)
90aeb998 215 $(OCAMLOPT) $(STATIC) -o $@ $(SYSLIBS:.cma=.cmxa) $(OPTSEXPLIB) $(OPTLIBFLAGS) $^
34e49164 216
faf9a90c 217$(EXEC).top: $(LIBS) $(OBJS)
90aeb998 218 $(OCAMLMKTOP) -custom -o $@ $(SYSLIBS) $(SEXPLIB) $^
34e49164
C
219
220clean::
221 rm -f $(TARGET) $(TARGET).opt $(TARGET).top
34e49164 222
b1b2de81
C
223.PHONY:: tools configure
224
225configure:
226 ./configure
34e49164 227
7f004419 228Makefile.config:
708f4980
C
229 @echo "Makefile.config is missing. Have you run ./configure?"
230 @exit 1
231
34e49164
C
232tools:
233 $(MAKE) -C tools
b1b2de81 234
34e49164 235clean::
c3e37e97 236 if [ -d tools ] ; then $(MAKE) -C tools clean ; fi
34e49164 237
34e49164
C
238static:
239 rm -f spatch.opt spatch
240 $(MAKE) STATIC="-ccopt -static" spatch.opt
241 cp spatch.opt spatch
242
243purebytecode:
244 rm -f spatch.opt spatch
245 $(MAKE) BYTECODE_STATIC="" spatch
fc1ad971 246 perl -p -i -e 's/^#!.*/#!\/usr\/bin\/ocamlrun/' spatch
34e49164
C
247
248
b1b2de81
C
249##############################################################################
250# Build documentation
251##############################################################################
252.PHONY:: docs
253
254docs:
255 make -C docs
256
257clean::
258 make -C docs clean
259
260distclean::
261 make -C docs distclean
262
263##############################################################################
264# Pre-Install (customization of spatch frontend script)
265##############################################################################
b1b2de81 266
90aeb998
C
267preinstall: docs/spatch.1 scripts/spatch scripts/spatch.opt scripts/spatch.byte
268
269docs/spatch.1: Makefile.config
270 $(MAKE) -C docs spatch.1
b1b2de81
C
271
272# user will use spatch to run spatch.opt (native)
5636bb2c 273scripts/spatch: Makefile.config
b1b2de81
C
274 cp scripts/spatch.sh scripts/spatch.tmp2
275 sed "s|SHAREDIR|$(SHAREDIR)|g" scripts/spatch.tmp2 > scripts/spatch.tmp
276 sed "s|LIBDIR|$(LIBDIR)|g" scripts/spatch.tmp > scripts/spatch
277 rm -f scripts/spatch.tmp2 scripts/spatch.tmp
278
279# user will use spatch to run spatch (bytecode)
5636bb2c 280scripts/spatch.byte: Makefile.config
708f4980
C
281 cp scripts/spatch.sh scripts/spatch.byte.tmp3
282 sed "s|\.opt||" scripts/spatch.byte.tmp3 > scripts/spatch.byte.tmp2
283 sed "s|SHAREDIR|$(SHAREDIR)|g" scripts/spatch.byte.tmp2 \
284 > scripts/spatch.byte.tmp
285 sed "s|LIBDIR|$(LIBDIR)|g" scripts/spatch.byte.tmp \
286 > scripts/spatch.byte
287 rm -f scripts/spatch.byte.tmp3 \
288 scripts/spatch.byte.tmp2 \
289 scripts/spatch.byte.tmp
b1b2de81
C
290
291# user will use spatch.opt to run spatch.opt (native)
5636bb2c 292scripts/spatch.opt: Makefile.config
b1b2de81 293 cp scripts/spatch.sh scripts/spatch.opt.tmp2
708f4980
C
294 sed "s|SHAREDIR|$(SHAREDIR)|g" scripts/spatch.opt.tmp2 \
295 > scripts/spatch.opt.tmp
296 sed "s|LIBDIR|$(LIBDIR)|g" scripts/spatch.opt.tmp \
297 > scripts/spatch.opt
b1b2de81
C
298 rm -f scripts/spatch.opt.tmp scripts/spatch.opt.tmp2
299
300clean::
301 rm -f scripts/spatch scripts/spatch.byte scripts/spatch.opt
302
34e49164
C
303##############################################################################
304# Install
305##############################################################################
306
307# don't remove DESTDIR, it can be set by package build system like ebuild
8ba84ae2 308# for staged installation.
0708f913 309install-common:
34e49164
C
310 mkdir -p $(DESTDIR)$(BINDIR)
311 mkdir -p $(DESTDIR)$(LIBDIR)
174d1640 312 mkdir -p $(DESTDIR)$(SHAREDIR)/ocaml
faf9a90c 313 mkdir -p $(DESTDIR)$(MANDIR)/man1
8ba84ae2
C
314 $(INSTALL_DATA) standard.h $(DESTDIR)$(SHAREDIR)
315 $(INSTALL_DATA) standard.iso $(DESTDIR)$(SHAREDIR)
174d1640 316 $(INSTALL_DATA) ocaml/coccilib.cmi $(DESTDIR)$(SHAREDIR)/ocaml/
8ba84ae2
C
317 $(INSTALL_DATA) docs/spatch.1 $(DESTDIR)$(MANDIR)/man1/
318 @if [ $(FEATURE_PYTHON) -eq 1 ]; then $(MAKE) install-python; fi
174d1640
C
319
320install-bash:
321 mkdir -p $(DESTDIR)$(BASH_COMPLETION_DIR)
322 $(INSTALL_DATA) scripts/spatch.bash_completion \
323 $(DESTDIR)$(BASH_COMPLETION_DIR)/spatch
0708f913 324
8ba84ae2
C
325install-python:
326 mkdir -p $(DESTDIR)$(SHAREDIR)/python/coccilib/coccigui
327 $(INSTALL_DATA) python/coccilib/*.py \
328 $(DESTDIR)$(SHAREDIR)/python/coccilib
329 $(INSTALL_DATA) python/coccilib/coccigui/*.py \
330 $(DESTDIR)$(SHAREDIR)/python/coccilib/coccigui
b1b2de81
C
331 $(INSTALL_DATA) python/coccilib/coccigui/pygui.glade \
332 $(DESTDIR)$(SHAREDIR)/python/coccilib/coccigui
333 $(INSTALL_DATA) python/coccilib/coccigui/pygui.gladep \
334 $(DESTDIR)$(SHAREDIR)/python/coccilib/coccigui
90aeb998
C
335 if [ -f pycaml/dllpycaml_stubs.so ]; then \
336 $(INSTALL_LIB) pycaml/dllpycaml_stubs.so $(DESTDIR)$(LIBDIR) ; fi
8ba84ae2 337
951c7801 338install: install-common
b1b2de81
C
339 @if test -x spatch -a ! -x spatch.opt ; then \
340 $(MAKE) install-byte;fi
341 @if test ! -x spatch -a -x spatch.opt ; then \
342 $(MAKE) install-def; $(MAKE) install-opt;fi
343 @if test -x spatch -a -x spatch.opt ; then \
344 $(MAKE) install-byte; $(MAKE) install-opt;fi
345 @if test ! -x spatch -a ! -x spatch.opt ; then \
346 echo "\n\n\t==> Run 'make', 'make opt', or both first. <==\n\n";fi
708f4980
C
347 @echo ""
348 @echo "\tYou can also install spatch by copying the program spatch"
349 @echo "\t(available in this directory) anywhere you want and"
350 @echo "\tgive it the right options to find its configuration files."
351 @echo ""
b1b2de81 352
0708f913 353# user will use spatch to run spatch.opt (native)
708f4980 354install-def:
8ba84ae2 355 $(INSTALL_PROGRAM) spatch.opt $(DESTDIR)$(SHAREDIR)
b1b2de81 356 $(INSTALL_PROGRAM) scripts/spatch $(DESTDIR)$(BINDIR)/spatch
0708f913
C
357
358# user will use spatch to run spatch (bytecode)
708f4980 359install-byte:
8ba84ae2 360 $(INSTALL_PROGRAM) spatch $(DESTDIR)$(SHAREDIR)
b1b2de81 361 $(INSTALL_PROGRAM) scripts/spatch.byte $(DESTDIR)$(BINDIR)/spatch
0708f913
C
362
363# user will use spatch.opt to run spatch.opt (native)
708f4980 364install-opt:
8ba84ae2 365 $(INSTALL_PROGRAM) spatch.opt $(DESTDIR)$(SHAREDIR)
b1b2de81 366 $(INSTALL_PROGRAM) scripts/spatch.opt $(DESTDIR)$(BINDIR)/spatch.opt
34e49164
C
367
368uninstall:
369 rm -f $(DESTDIR)$(BINDIR)/spatch
8ba84ae2 370 rm -f $(DESTDIR)$(BINDIR)/spatch.opt
34e49164 371 rm -f $(DESTDIR)$(LIBDIR)/dllpycaml_stubs.so
90aeb998
C
372 rm -f $(DESTDIR)$(SHAREDIR)/spatch
373 rm -f $(DESTDIR)$(SHAREDIR)/spatch.opt
34e49164
C
374 rm -f $(DESTDIR)$(SHAREDIR)/standard.h
375 rm -f $(DESTDIR)$(SHAREDIR)/standard.iso
174d1640 376 rm -f $(DESTDIR)$(SHAREDIR)/ocaml/coccilib.cmi
90aeb998
C
377 rm -f $(DESTDIR)$(SHAREDIR)/python/coccilib/coccigui/*
378 rm -f $(DESTDIR)$(SHAREDIR)/python/coccilib/*.py
379 rmdir --ignore-fail-on-non-empty -p \
380 $(DESTDIR)$(SHAREDIR)/python/coccilib/coccigui
faf9a90c 381 rm -f $(DESTDIR)$(MANDIR)/man1/spatch.1
34e49164 382
aba5c457
C
383uninstall-bash:
384 rm -f $(DESTDIR)$(BASH_COMPLETION_DIR)/spatch
385 rmdir --ignore-fail-on-non-empty -p \
386 $(DESTDIR)$(BASH_COMPLETION_DIR)
387
34e49164 388version:
951c7801 389 @echo "spatch $(VERSION)"
c3e37e97 390 @echo "spatch $(PKGVERSION) ($(DISTRIB_ID))"
951c7801 391 @echo "coccicheck $(CCVERSION)"
34e49164
C
392
393
394##############################################################################
5636bb2c 395# Deb package (for Ubuntu) and release rules
34e49164
C
396##############################################################################
397
5636bb2c 398include Makefile.release
c3e37e97 399
34e49164
C
400##############################################################################
401# Developer rules
402##############################################################################
403
7f004419
C
404-include Makefile.dev
405
34e49164
C
406test: $(TARGET)
407 ./$(TARGET) -testall
408
409testparsing:
410 ./$(TARGET) -D standard.h -parse_c -dir tests/
411
412
413
faf9a90c
C
414# -inline 0 to see all the functions in the profile.
415# Can also use the profile framework in commons/ and run your program
34e49164
C
416# with -profile.
417forprofiling:
418 $(MAKE) OPTFLAGS="-p -inline 0 " opt
419
420clean::
faf9a90c 421 rm -f gmon.out
34e49164
C
422
423tags:
424 otags -no-mli-tags -r .
425
426dependencygraph:
951c7801 427 find -name "*.ml" |grep -v "scripts" | xargs ocamldep -I commons -I globals -I ctl -I parsing_cocci -I parsing_c -I engine -I popl09 -I extra > /tmp/dependfull.depend
485bce71 428 ocamldot -lr /tmp/dependfull.depend > /tmp/dependfull.dot
34e49164 429 dot -Tps /tmp/dependfull.dot > /tmp/dependfull.ps
485bce71 430 ps2pdf /tmp/dependfull.ps /tmp/dependfull.pdf
34e49164
C
431
432##############################################################################
433# Misc rules
434##############################################################################
435
faf9a90c 436# each member of the project can have its own test.ml. this file is
34e49164 437# not under CVS.
faf9a90c 438test.ml:
34e49164
C
439 echo "let foo_ctl () = failwith \"there is no foo_ctl formula\"" \
440 > test.ml
441
442beforedepend:: test.ml
443
444
445#INC=$(dir $(shell which ocaml))
446#INCX=$(INC:/=)
447#INCY=$(dir $(INCX))
448#INCZ=$(INCY:/=)/lib/ocaml
449#
450#prim.o: prim.c
451# gcc -c -o prim.o -I $(INCZ) prim.c
452
453
454##############################################################################
455# Generic ocaml rules
456##############################################################################
457
458.SUFFIXES: .ml .mli .cmo .cmi .cmx
459
460.ml.cmo:
461 $(OCAMLC) -c $<
462.mli.cmi:
463 $(OCAMLC) -c $<
464.ml.cmx:
465 $(OCAMLOPT) -c $<
466
faf9a90c 467.ml.mldepend:
34e49164
C
468 $(OCAMLC) -i $<
469
470clean::
471 rm -f *.cm[iox] *.o *.annot
34e49164
C
472 rm -f *~ .*~ *.exe #*#
473
b1b2de81
C
474distclean:: clean
475 set -e; for i in $(MAKESUBDIRS); do $(MAKE) -C $$i $@; done
476 rm -f .depend
477 rm -f Makefile.config
b1b2de81
C
478 rm -f python/pycocci.ml
479 rm -f python/pycocci_aux.ml
480 rm -f globals/config.ml
481 rm -f TAGS
482 rm -f tests/SCORE_actual.sexp
483 rm -f tests/SCORE_best_of_both.sexp
484 find -name ".#*1.*" | xargs rm -f
485
34e49164
C
486beforedepend::
487
488depend:: beforedepend
489 $(OCAMLDEP) *.mli *.ml > .depend
b1b2de81
C
490 set -e; for i in $(MAKESUBDIRS); do $(MAKE) -C $$i $@; done
491
492.depend::
493 @if [ ! -f .depend ] ; then $(MAKE) depend ; fi
34e49164
C
494
495-include .depend