#*---------------------------------------------------------------------*/
#*    Copyright (c) 1994 by Manuel Serrano. All rights reserved.       */
#*                                                                     */
#*                                     ,--^,                           */
#*                               _ ___/ /|/                            */
#*                           ,;'( )__, ) '                             */
#*                          ;;  //   L__.                              */
#*                          '   \    /  '                              */
#*                               ^   ^                                 */
#*                                                                     */
#*                                                                     */
#*    This program is distributed in the hope that it will be useful.  */
#*    Use and copying of this software and preparation of derivative   */
#*    works based upon this software are permitted, so long as the     */
#*    following conditions are met:                                    */
#*           o credit to the authors is acknowledged following current */
#*             academic behaviour                                      */
#*           o no fees or compensation are charged for use, copies, or */
#*             access to this software                                 */
#*           o this copyright notice is included intact.               */
#*      This software is made available AS IS, and no warranty is made */
#*      about the software or its performance.                         */
#*                                                                     */
#*      Bug descriptions, use reports, comments or suggestions are     */
#*      welcome Send them to                                           */
#*        <Manuel.Serrano@inria.fr>                                    */
#*        Manuel Serrano                                               */
#*        INRIA -- Rocquencourt                                        */
#*        Domaine de Voluceau, BP 105                                  */
#*        78153 Le Chesnay Cedex                                       */
#*        France                                                       */
#*---------------------------------------------------------------------*/

Here is the procedure for compiling and installing BIGLOO on a Unix system.


Configuring BIGLOO
******************

   1. Configure Bigloo for your machine. If you want to compile Bigloo
      with gcc just type `./configure'. 

      If you want to choose your own compiler, type
      `./configure --cc=<your C compiler>'.


Compiling BIGLOO
****************

   2. Type `make boot'.


Installing BIGLOO
*****************

   3. Edit the Makefile file. Write the directory where you
      want `Bigloo' to be installed in the DESTDIR variable. This 
      directory must contains three sub-directories, `lib', `bin' 
      and `include'. Check if you can write on the DESTDIR directory
      before trying to install Bigloo into it.

   4. Type `make install'.


Cleaning BIGLOO
***************

   5. You could type `make clean' to remove all the useless files.


Testing BIGLOO
**************

   6. Now Bigloo is ready to be used but if you want to make the
      initial test, type `cd recette; make'. The compilation will
      produces `warning' messages on the files `callcc.scm', `list.scm'
      and `macro.scm'. It is normal.
      


