home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / c-kermit / ckdmak.cli < prev    next >
Text File  |  2020-01-01  |  1KB  |  39 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 Compile-time switches are given in ckcdd.cli.  To build a version
  13. comment of C-Kermit without TCP/IP support, remove the DEFINE for TCPSOCKET.
  14.  
  15. comment C-Kermit is built using version 3.22 of the C compiler and version
  16. comment 3.54 of the runtime library LANG_RT.LB.  Newer C releases, like 4.10,
  17. comment are not recommended because of various compile and runtime errors.
  18.  
  19. comment This compiles all of the files and then links them -- takes a looong
  20. comment time on a slow machine like the MV 2500.  It does not work like UNIX
  21. comment make, which only compiles those modules that are newer than the
  22. comment corresponding OBject files.  So to compile a single file, do:
  23.  
  24. comment   ckdcc ckuus4
  25.  
  26. comment (specify the filename without the ".c").  Then to link, do:
  27.  
  28. comment   ckdlnk
  29.  
  30. comment First compile and link the wart preprocessor.
  31. ckdcc/link%/% ckwart CKCMAI/DEFINE %-%
  32. x ckwart ckcpro.w ckcpro.c
  33.  
  34. comment Now compile the sources listed in ckdsrc.lis.
  35. ckdcc%/% ([ckdsrc.lis]) %-%
  36.  
  37. comment Link the program file from these.
  38. ckdlnk%/%
  39.