

To build a common lisp version of the MAP system type

   make setup

to copy over the src code and make the minor modifications for
common lisp.

Then start up lisp

    (load "mapcl")   ;; to load in some low level compatability functions
    (compile-map)    ;; to compile the system

To start the system to be safe always load in mapcl first then

    (load "morphan")
    (D-Start)

The function D-Start takes an optional argument, the directory where
the common lisp compile code lives so the system can be started from
other places.  e.g.


    (load "/usr/local/lib/nlp/MAP3.1/common/mapcl")
    (load "/usr/local/lib/nlp/MAP3.1/common/morphan")
    (D-Start "/usr/local/lib/nlp/MAP3.1/common")


