home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / a / aos-vs.zip / CKDLNK.CLI < prev    next >
Text File  |  1993-01-24  |  2KB  |  48 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. comment
  17. comment If you are building Kermit without support for outgoing
  18. comment Telnet sessions -- maybe because you are doing the build on a
  19. comment system that is not running AOS/VS II or AOS/VS II TCP/IP --
  20. comment you should remove :LIB:SOCKIT.LB from the call to ccl.
  21.  
  22. push
  23. prompt pop
  24.  
  25. comment Delete previous error file, and link a new program image
  26. delete/1=ig/2=ig ckdlnk.er
  27. delete/2=ignore ckdlnk.lm
  28.  
  29. wr; wr Now linking Kermit with options: {%/%}
  30. wr and 3 tasks; wr
  31. ccl%/%/tasks=3/e==ckdlnk.er/l=ckdlnk.lm/xref/STACK=20000/HEAP=61440&
  32. /REV=00.05.188.00 <[ckdsrc.lis]> :LIB:SOCKIT.LB
  33.  
  34. comment Delete the old program image and associated files, and 
  35. comment rename the new program files for Kermit.
  36.  
  37. DELETE/1=WARN/2=WARN kermit.<pr st>
  38. DELETE/1=IGNORE/2=IGNORE kermit.<dl ds er>
  39. [!neq [!path ckcmai.lm]x,x]
  40.    DELETE/1=IGNORE/2=IGNORE kermit.lm
  41. [!end]
  42. rename/1=IGNORE/2=IGNORE <ckcmai kermit>.(pr st dl ds lm)
  43. rename/1=IGNORE/2=IGNORE <ckdlnk kermit>.er
  44.  
  45. wr All Done!
  46. pop
  47.  
  48.