Release of coccinelle 1.0.0-rc9
[bpt/coccinelle.git] / Makefile.libs
CommitLineData
97111a47
C
1#
2# Static configuration of Ocaml libraries
3# Add these libraries to the library list in configure in order to use them.
4#
5# Template:
6# LOCAL_$lib = modules to include when compiling $lib locally with bytecode ocaml
7# LOCALOPT_$lib = moduels to include when compiling $lib locally with optimizing ocaml
8# GLOBAL_$lib = modules to include when using $lib globally with bytecode ocaml
9# GLOBALOPT_$lib = modules to include when using $lib globally with optimizing ocaml
10# FLAGS_$lib = extra flags to pass to optimizing ocaml when using $lib at link time
11#
12# This file is included in the Makefile where these variables may be used depending
13# on your actual configuration.
14#
15
16
17# pycaml library
18LOCAL_pycaml = pycaml.cma
19LOCALOPT_pycaml = pycaml.cmxa
20GLOBAL_pycaml = pycaml.cma
21GLOBALOPT_pycaml = pycaml.cmxa
22FLAGS_pycaml =
23
24# sexplib library
25LOCAL_sexplib = sexplib.cmo
26LOCALOPT_sexplib = sexplib.cmx
27GLOBAL_sexplib = sexplib.cma
28GLOBALOPT_sexplib = sexplib.cmxa
29FLAGS_sexplib =
30
31# pcre library
32LOCAL_pcre = pcre.cmo
33LOCALOPT_pcre = pcre.cmx
34GLOBAL_pcre = pcre.cma
35GLOBALOPT_pcre = pcre.cmxa
36FLAGS_pcre = -cclib -lpcre
37
38# dynlink library
39LOCAL_dynlink =
40LOCALOPT_dynlink =
41GLOBAL_dynlink = dynlink.cma
42GLOBALOPT_dynlink = dynlink.cmxa
43
44# extlib library
45LOCAL_extlib =
46LOCALOPT_extlib =
47GLOBAL_extlib = extLib.cma
48GLOBALOPT_extlib = extLib.cmxa
49FLAGS_extlib =