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 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
|
# 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 OCaml 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
#----------------------------------------------------------------------
# What the path setting will be
#----------------------------------------------------------------------
FINDLIB_PATH=/usr/local/lib/ocaml/site-lib:/usr/local/lib/ocaml
#----------------------------------------------------------------------
# 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
#----------------------------------------------------------------------
# Whether the config and paths are looked up relative to the
# installation
#----------------------------------------------------------------------
RELATIVE_PATHS=0
RELATIVE_OCAML_SITELIB=$$PREFIX/lib
#----------------------------------------------------------------------
# Whether make install should update Makefile.packages just before
# running
#----------------------------------------------------------------------
CHECK_BEFORE_INSTALL=0
|