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 / CKDMAK.CLI < prev    next >
Text File  |  1993-01-24  |  1KB  |  31 lines

  1. comment
  2. comment This macro compiles and links all of the C-Kermit sources necessary
  3. comment to build C-Kermit for AOS/VS (5A).  It depends upon the existence of
  4. comment the following macros:
  5. comment     ckdcc.cli
  6. comment     ckdlnk.cli
  7. comment both of which you will need to edit to suit your particular
  8. comment environment.  It also depends on the following file:
  9. comment     ckdsrc.lis
  10. comment which is a list of the Kermit source modules.
  11.  
  12. comment  C-Kermit is built using version 3.22 of the C compiler and version
  13. comment  3.54 of the runtime library LANG_RT.LB.  Newer C releases, like 4.10,
  14. comment  are not recommended because of various compile and runtime errors.
  15.  
  16. comment  It is assumed that the appropriate C compiler, linker, and libraries
  17. comment  are in your searchlist.  If not, uncomment the following command and
  18. comment  modify it to show the true location of your C compiler and runtimes.
  19.  
  20. comment searchlist :c :lang_rt [!sea]
  21.  
  22. comment First compile and link the wart preprocessor.
  23. ckdcc/link%/% ckwart CKCMAI/DEFINE %-%
  24. x ckwart ckcpro.w ckcpro.c
  25.  
  26. comment Now compile the sources listed in ckdsrc.lis.
  27. ckdcc%/% ([ckdsrc.lis]) %-%
  28.  
  29. comment Link the program file from these.
  30. ckdlnk%/%
  31.