home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / MacMETH 3.2.1 / M2Tools 3.2.1 / HierSRC.DOC < prev    next >
Encoding:
Text File  |  1994-03-21  |  997 b   |  29 lines  |  [TEXT/MEDT]

  1. HierSRC 1.0 - Modula-2 Dependency Analyzer/jth June 93
  2.  
  3. This tool produces a dependency matrix of a given Modula-2 source
  4. file. After calling this tool you will be asked for the name of an 
  5. input-file.  You may add optional arguments according to the following syntax:
  6.  
  7.        input-file[/([-exclude]|[+combine])*]
  8.        
  9. The modules with name exclude* will not be considered.
  10. The files with name combine* will be combined in the dependency matrix
  11. into one entry.
  12.  
  13. The tool scans recursively the import list of the input-file.
  14. The recursion stops if an imported file is not found according to
  15. the User.Profile path-list.
  16.  
  17. The dependency matrix is written to a file called input-file.DEP.
  18. The matrix elements are either empty or marked with an "X". An "X" at the
  19. position col,row means that the module col imports the module in the row.
  20.  
  21. The matrix elements are separated by TAB (ASCII 9) characters. 
  22. This supports viewing of the dependency matrix within a spread-sheet program.
  23.  
  24.  
  25.  
  26. jth  Feb/94
  27.  
  28.  
  29.