
               INSTALLING CAMLOT ON A UNIX SYSTEM


  What you need to build and install Camlot:
- a 32-bit Unix system, with at least 20 Mb of disk space
- a standard C compiler (ANSI compliant)
- camlc : the Caml Light bytecode compiler
- gnumake : the Gnu make utility

1- Edit the file ./configuration. Change the variable definitions to indicate 
which Caml Light and C compiler to use, and where to install files.

2- Configure the system. In the Include/ subdirectory, choose the config.arch
file suitable for your architecture and copy it to config.h. Then check the
content of config.h depending on your operating system.

3- Do "make".

This builds all the components of the compiler. This phase is fairly verbose
and can take some time. Consider redirecting the output to a file:

        make > output 2>&1     # in sh
        make >& output         # in csh

4- You can now install Camlot. This will create the "camlot" and "k2" command 
in the directory set to BINDIR in Makefile, and the standard library will be 
put into the LIBDIR directory.

  Become superuser and do "make install".

5- You can test the compiler by doing "make test". This will compile and
execute the programs stored in the Tests/ subdirectory.
