forked from dune-universe/lib-findlib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.config.pattern
61 lines (52 loc) · 2.59 KB
/
Makefile.config.pattern
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# You can manually set up your configuration using this
# pattern. The final name of the file must be "Makefile.config".
# Note that there are other files containing parts of the
# configuration, especially the site-lib/*/META files.
#
#----------------------------------------------------------------------
# Where the OCAML core is installed:
#----------------------------------------------------------------------
OCAML_CORE_STDLIB=/usr/local/lib/ocaml
OCAML_CORE_BIN=/usr/local/bin
OCAML_CORE_MAN=/usr/local/man
#----------------------------------------------------------------------
# Type of multi-threading support: either vm or posix
# (Note: Since O'Caml 3.07, "posix" includes "vm", because a build
# supporting posix also supports vm.)
#----------------------------------------------------------------------
OCAML_THREADS=vm
#OCAML_THREADS=posix
#----------------------------------------------------------------------
# Where the site-lib directory will be
#----------------------------------------------------------------------
OCAML_SITELIB=/usr/local/lib/ocaml/site-lib
#----------------------------------------------------------------------
# Where binaries and manual pages will be installed
#----------------------------------------------------------------------
OCAMLFIND_BIN=/usr/local/bin
OCAMLFIND_MAN=/usr/local/man
#----------------------------------------------------------------------
# The absolute location of the configuration file
#----------------------------------------------------------------------
OCAMLFIND_CONF=/usr/local/etc/ocamlfind.conf
#----------------------------------------------------------------------
# Autolinking is usually on
#----------------------------------------------------------------------
OCAML_AUTOLINK=true
#----------------------------------------------------------------------
# Windows only: set this to .exe
#----------------------------------------------------------------------
EXEC_SUFFIX=
#----------------------------------------------------------------------
# Windows MSVC port: set this to .lib
#----------------------------------------------------------------------
LIB_SUFFIX=.a
#----------------------------------------------------------------------
# Which parts are to be built: findlib, findlib-toolbox (space-separated
# list)
#----------------------------------------------------------------------
PARTS=findlib findlib-toolbox
#----------------------------------------------------------------------
# Whether the "topfind" script is installed in $(OCAML_CORE_STDLIB):
#----------------------------------------------------------------------
INSTALL_TOPFIND=1