-- File crossTableCompiler.config
-- Last modified by Satterthwaite on August 2, 1983 10:17 am
-- Last modified by Lewis on July 9, 1980  4:59 PM

DIRECTORY
  PGSSymbols: FROM "tPGSSymbols",
  PGSBcd: FROM "tPGSBcd";
  
CrossTableCompiler: CONFIG LINKS: CODE
    IMPORTS
      Directory, Exec, File, FileStream, Heap, Inline, KernelFile,
      LongStorage, LongString, ProcessorFace, Runtime, Space, Strings,
      Time, Transaction, TTY, UserTerminal, Volume
    CONTROL CrossTableControl = {

  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, Volume
      EXPORTS PGSConDefs = {
    AllocImpl;
    SymbolPack;
    SymbolPackExt;
    PGSSymbols};

  StringCompactor;
  ModuleMaker;
  PGSBcd;
  SymbolInput;
  SymbolOutput;
  CrossTableControl;

  OSMiscOpsImpl;
  CharIOImpl;

  }.