An implementation of the Pascal- language defined by Brinch-Hansen in his
book "Brinch-Hansen on Pascal Compilers".  The contents of this directory are:

Makefile	File to control construction of the processor and its
		documentation.  The products that can be made are:
	all	Processor and documentation
	code	Processor only
	paper	Documentation only
	tidy	Delete intermediate files
	clean	Delete products and intermediate files

doc		Directory containing the specification of the documentation
specs		Directory containing the specification of the processor
tests		Simple test suite for Pascal-

mk		Eli requests to construct and test the processor
mkd		Eli request to construct the documentation
pascal.h	Implementation of the Pascal- Computer in C

try		Command file to run the processor over the test suite

WARNING: The subdirectories of this directory contain hard links.  DO NOT
copy the directory with cp -r!  Use a sequence similar to:

	tar -cf - this | (cd dest; tar -xf -)

Here "this" is the directory containing this README and "dest" is the
directory into which the directory containing this README is to be copied.

When you make the processor, you will get an executable program called
"pascal.exe" and a source directory called "src".

When you make the documentation, you will get a directory called "tex".
The documentation will be a file "tex/paper.tex".  Use your normal strategy
for dealing with TeX documents in the "tex" directory to get a printed
copy.
