To build the pcc file do the following:

make 

Then as root do:

make install

To test the program there are several pascal source files included in the
tar package. In order for pcc to work the pascal to c program p2c has to be
installed, along with its include and library files.

Try the following commands:

	pcc fact.p

	fact	

	pcc -O3 -m486 -fomit-frame-pointer -s -o e e.p

	e
	
	pcc fax.p facts.p -o factory

	factory

	pcc -O3 self.p

	self

The file facts.p shows how to do a separate compile using p2c.
Have fun. 

Bob
