home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / p / pascal-.zip / pascal- / README < prev    next >
Text File  |  1993-01-05  |  1KB  |  37 lines

  1. An implementation of the Pascal- language defined by Brinch-Hansen in his
  2. book "Brinch-Hansen on Pascal Compilers".  The contents of this directory are:
  3.  
  4. Makefile    File to control construction of the processor and its
  5.         documentation.  The products that can be made are:
  6.     all    Processor and documentation
  7.     code    Processor only
  8.     paper    Documentation only
  9.     tidy    Delete intermediate files
  10.     clean    Delete products and intermediate files
  11.  
  12. doc        Directory containing the specification of the documentation
  13. specs        Directory containing the specification of the processor
  14. tests        Simple test suite for Pascal-
  15.  
  16. mk        Eli requests to construct and test the processor
  17. mkd        Eli request to construct the documentation
  18. pascal.h    Implementation of the Pascal- Computer in C
  19.  
  20. try        Command file to run the processor over the test suite
  21.  
  22. WARNING: The subdirectories of this directory contain hard links.  DO NOT
  23. copy the directory with cp -r!  Use a sequence similar to:
  24.  
  25.     tar -cf - this | (cd dest; tar -xf -)
  26.  
  27. Here "this" is the directory containing this README and "dest" is the
  28. directory into which the directory containing this README is to be copied.
  29.  
  30. When you make the processor, you will get an executable program called
  31. "pascal.exe" and a source directory called "src".
  32.  
  33. When you make the documentation, you will get a directory called "tex".
  34. The documentation will be a file "tex/paper.tex".  Use your normal strategy
  35. for dealing with TeX documents in the "tex" directory to get a printed
  36. copy.
  37.