home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / old / ckermit5a190 / ckdmak.cli < prev    next >
Text File  |  2020-01-01  |  931b  |  25 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 First compile and link the wart preprocessor.
  17. ckdcc/link%/% ckwart CKCMAI/DEFINE %-%
  18. x ckwart ckcpro.w ckcpro.c
  19.  
  20. comment Now compile the sources listed in ckdsrc.lis.
  21. ckdcc%/% ([ckdsrc.lis]) %-%
  22.  
  23. comment Link the program file from these.
  24. ckdlnk%/%
  25.