/*  README,v 1.1.1.1 1992/06/02 16:22:24 jan Exp

    Part of XPCE
    Designed and implemented by Anjo Anjewierden and Jan Wielemaker
    E-mail: jan@swi.psy.uva.nl

    Copyright (C) 1992 University of Amsterdam. All rights reserved.
*/

GENERIC PROLOG <-> PCE INTERFACE

This directory  contains the files  interface.c and interface.h, which
implement a generic interface between PCE  and Prolog.  It is supposed
to  be  usable  for   any  Prolog system   that   allows you to   Pass
Prolog-terms over the C-interface and analyse them in C
  
To connect  PCE to some specific Prolog  system,  an interface between
this module and the  foreign-language interface of your  Prolog system
has to be written.  The normal way to proceed is the following

  1) Create a directory indicating the name of the prolog system below
  the PCE main-directory (we will call this `my-prolog').

  2) Create a directory src below my-prolog.

  3) Create the interface (interface.c) and a Makefile in my-prolog.c
  An interface is supposed to be created when `make interface.o' is
  called in this directory.

  4) Create a file interface.c from the skeleton in file skeleton.c


