home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / ckc072.zip / ckdlnk.cli < prev    next >
Text File  |  1988-08-16  |  1KB  |  43 lines

  1. comment This file links together the Kermit modules into an excuteable program.
  2. comment File extensions have the usual meaning for the Data General, except
  3. comment that all files have been renamed to kermit.something.
  4. comment If you want to use the SWAT debugger, enter:
  5. comment   ckdlnk/debug
  6. comment
  7. comment Files output from this CLI macro are:
  8. comment   kermit.pr      Kermit program
  9. comment   kermit.er      Link error message file
  10. comment   kermit.st      Symbol table
  11. comment   kermit.dl      Debugger file if /debug is requested
  12. comment   kermit.ds      Debugger file if /debug is requested
  13. comment   kermit.lm      Map file if /map is requested
  14. comment
  15. comment The list of object modules to compile is in ckdsrc.lis .
  16.  
  17.  
  18. comment
  19. comment Delete previous error file, and link a new program image
  20. comment
  21.  
  22. delete/1=ig/2=ig ckdlnk.er
  23.  
  24. wr; wr Now linking Kermit with options: {%/%}
  25. wr and 3 multitasking processes; wr
  26. ccl%/%/tasks=3/e==ckdlnk.er <[ckdsrc.lis]>
  27.  
  28.  
  29. comment
  30. comment Delete the old program image and associated files, and 
  31. comment rename the new program files for Kermit.
  32. comment
  33.  
  34. DELETE/1=WARN/2=WARN kermit.<pr st>
  35. DELETE/1=IGNORE/2=IGNORE kermit.<dl ds er>
  36. [!neq [!path ckcmai.lm]x,x]
  37.    DELETE/1=IGNORE/2=IGNORE kermit.lm
  38. [!end]
  39. rename/1=IGNORE/2=IGNORE <ckcmai kermit>.(pr st dl ds lm)
  40. rename/1=IGNORE/2=IGNORE <ckdlnk kermit>.er
  41.  
  42. wr All Done!
  43.