-- PGS.config
-- Last edited by Satterthwaite on June 18, 1982 1:54 pm
-- Last edited by Lewis on July 9, 1980  4:56 PM

DIRECTORY
  Scanner: FROM "PGSScan",
  Parser: FROM "PGSParse";

PGS: CONFIG LINKS: CODE 
    IMPORTS
      Directory, Exec, File, FileStream, Heap, Inline, KernelFile,
      LongStorage, LongString, ProcessorFace, Runtime, Segments,
      Space, Stream, Strings, Time, Transaction,-- TreeOps,--
      TTY, UserTerminal, Volume
    CONTROL PGSInterface = {

  SymbolInput: CONFIG
      IMPORTS
        File, Heap, Inline, LongString, OSMiscOps, Space, Strings, Transaction
      EXPORTS TableCommand = {
    SymbolPack;
    SymbolCache;
    TableSymbols};

  SymbolOutput: CONFIG
      IMPORTS
        File, Heap, Inline, LongString, PGSConDefs, Space, Strings, Transaction,
	TreeOps, Volume
      EXPORTS PGSConDefs = {
    AllocImpl;
    SymbolPack;
    SymbolPackExt;
    PGSSymbols};

  OSMiscOpsImpl;
  CharIOImpl;
  CommandPack;
  Scanner;
  Parser;
  PGSParseData;
  PGSInterface;
  PGSControl;
  PGSLALR;
  PGSTab;
  PGSFormat;
  PGSBcd;
  SymbolInput;
  SymbolOutput;

  }.