62 lines
2.0 KiB
Plaintext
62 lines
2.0 KiB
Plaintext
#########################################################################
|
|
# #
|
|
# Objective Caml #
|
|
# #
|
|
# Damien Doligez, Projet Para, INRIA Rocquencourt #
|
|
# #
|
|
# Copyright 1999 Institut National de Recherche en Informatique et #
|
|
# en Automatique. All rights reserved. This file is distributed #
|
|
# under the terms of the GNU Library General Public License. #
|
|
# #
|
|
#########################################################################
|
|
|
|
# $Id$
|
|
|
|
### Compile-time configuration
|
|
|
|
########## General configuration
|
|
|
|
### Where to install the MPW tool binaries
|
|
set -e BINDIR "{mpw}User Commands:"
|
|
|
|
### Where to install the standard library for MPW tools
|
|
set -e LIBDIR "{mpw}User Commands:ocaml-lib:"
|
|
|
|
### Where to install the help file
|
|
set -e HELPFILE "{mpw}OCaml.help"
|
|
|
|
### Where to install the application and the standard library
|
|
set -e APPLIDIR "{mpw}:OCaml-distrib:"
|
|
|
|
|
|
############# 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"
|
|
|
|
|
|
############# Configuration for the native-code compiler
|
|
# (not used for the moment)
|
|
|
|
set -e ARCH none
|
|
set -e MODEL ppc
|
|
set -e SYSTEM unknown
|
|
set -e NATIVECC MrC
|
|
|
|
|
|
############# Version numbers (do not change)
|
|
|
|
set -e OCAMLMAJOR 2
|
|
set -e OCAMLMINOR 99
|
|
set -e MAJOR 1
|
|
set -e MINOR 0
|
|
set -e BUGFIX 0
|
|
set -e STAGE a
|
|
set -e REV 8
|