Blame Makefile.config.pattern

Packit b513ef
# You can manually set up your configuration using this
Packit b513ef
# pattern. The final name of the file must be "Makefile.config".
Packit b513ef
# Note that there are other files containing parts of the 
Packit b513ef
# configuration, especially the site-lib/*/META files.
Packit b513ef
# 
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
# Where the OCAML core is installed:
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
OCAML_CORE_STDLIB=/usr/local/lib/ocaml
Packit b513ef
OCAML_CORE_BIN=/usr/local/bin
Packit b513ef
OCAML_CORE_MAN=/usr/local/man
Packit b513ef
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
# Type of multi-threading support: either vm or posix
Packit b513ef
# (Note: Since O'Caml 3.07, "posix" includes "vm", because a build
Packit b513ef
# supporting posix also supports vm.)
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
OCAML_THREADS=vm
Packit b513ef
#OCAML_THREADS=posix
Packit b513ef
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
# Where the site-lib directory will be
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
OCAML_SITELIB=/usr/local/lib/ocaml/site-lib
Packit b513ef
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
# Where binaries and manual pages will be installed
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
OCAMLFIND_BIN=/usr/local/bin
Packit b513ef
OCAMLFIND_MAN=/usr/local/man
Packit b513ef
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
# The absolute location of the configuration file
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
OCAMLFIND_CONF=/usr/local/etc/ocamlfind.conf
Packit b513ef
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
# Autolinking is usually on
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
OCAML_AUTOLINK=true
Packit b513ef
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
# Windows only: set this to .exe
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
EXEC_SUFFIX=
Packit b513ef
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
# Windows MSVC port: set this to .lib
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
LIB_SUFFIX=.a
Packit b513ef
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
# Which parts are to be built: findlib, findlib-toolbox (space-separated
Packit b513ef
# list)
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
PARTS=findlib findlib-toolbox
Packit b513ef
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
# Whether the "topfind" script is installed in $(OCAML_CORE_STDLIB):
Packit b513ef
#----------------------------------------------------------------------
Packit b513ef
INSTALL_TOPFIND=1