1996-11-02 10:04:50 -08:00
|
|
|
### Compile-time configuration
|
|
|
|
|
|
|
|
########## General configuration
|
|
|
|
|
1998-10-02 06:02:32 -07:00
|
|
|
### Where to install the MPW tool binaries
|
1996-11-02 10:04:50 -08:00
|
|
|
set -e BINDIR "{mpw}User Commands:"
|
|
|
|
|
1998-10-02 06:02:32 -07:00
|
|
|
### Where to install the standard library for MPW tools
|
1996-11-02 10:04:50 -08:00
|
|
|
set -e LIBDIR "{mpw}User Commands:ocaml-lib:"
|
|
|
|
|
|
|
|
### Where to install the help file
|
1999-11-08 11:03:57 -08:00
|
|
|
set -e HELPFILE "{mpw}OCaml.help"
|
1996-11-02 10:04:50 -08:00
|
|
|
|
1998-10-02 06:02:32 -07:00
|
|
|
### Where to install the application and the standard library
|
1999-11-08 11:03:57 -08:00
|
|
|
set -e APPLIDIR "{mpw}::OCaml:"
|
1998-10-02 06:02:32 -07:00
|
|
|
|
|
|
|
|
|
|
|
############# Configuration for the contributed libraries
|
|
|
|
|
|
|
|
### Which libraries to compile and install
|
|
|
|
# Currently available:
|
|
|
|
# str Regular expressions and high-level string processing
|
|
|
|
# num Arbitrary-precision rational arithmetic
|
|
|
|
# dynlink Dynamic linking of bytecode
|
|
|
|
# graph Graphics (for the standalone application only)
|
|
|
|
#
|
|
|
|
set -e OTHERLIBRARIES "num str dynlink graph"
|
|
|
|
|
1996-11-02 10:04:50 -08:00
|
|
|
|
|
|
|
############# Configuration for the native-code compiler
|
|
|
|
# (not used)
|
|
|
|
|
|
|
|
set -e ARCH none
|
|
|
|
set -e MODEL ppc
|
|
|
|
set -e SYSTEM unknown
|
|
|
|
set -e NATIVECC MrC
|
|
|
|
|
|
|
|
|
1998-10-02 06:02:32 -07:00
|
|
|
############# Version numbers (do not change)
|
1996-11-02 10:04:50 -08:00
|
|
|
|
1998-10-02 06:02:32 -07:00
|
|
|
set -e OCAMLMAJOR 2
|
1999-02-27 13:50:47 -08:00
|
|
|
set -e OCAMLMINOR 02
|
1998-10-02 06:02:32 -07:00
|
|
|
set -e MAJOR 1
|
|
|
|
set -e MINOR 0
|
|
|
|
set -e STAGE a
|
1999-02-27 13:50:47 -08:00
|
|
|
set -e REV 4
|