home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / ckl196.zip / cklvos.txt < prev    next >
Text File  |  1997-03-07  |  3KB  |  69 lines

  1. /* *************************************************************************
  2.  * NAME: cklvos.hlp
  3.  * AUTH: Kernie Brashier <kernie@stratosphere.com>
  4.  * DATE: March 7, 1997
  5.  * DESC: This is David Lane's original documentation file updated for
  6.  *       for release 6.0 of C-Kermit.
  7.  * *************************************************************************
  8.  */
  9.  
  10.  
  11. HOW TO BUILD C-KERMIT
  12. *
  13. If you have a C compiler create a directory under the source location of
  14. kermit called build_dir. This name is not specific; however the original 
  15. macros run better if the source is built in a separate lib. The cklmak.cm macro
  16. is the 'make' file for kermit and the default build directory name
  17. is build_lib. Hence, if you change the name make sure you pass the full 
  18. pathname to the cklmak macro.  Issue a start process command to start
  19. cklmak and you are on your way. 
  20.  
  21. If you don't have a C compiler, follow the instructions in the cklins.doc
  22. file to extract the pm's from David's hex program
  23.  
  24.  
  25. /* *************************************************************************
  26.  
  27. These are the files that are VOS-specific:
  28.  
  29.  
  30. cklcon.c            C-Kermit code modules
  31. cklcvt.cm           Conversion command macro, stream to fixed
  32. ckldef.c            Utilty program used in build process
  33. cklfio.c
  34. cklins.doc          Installation document
  35. cklker.bwr          Beware file
  36. cklker.doc          VOS-specific documentation for C-Kermit
  37. cklmak.cm           Build command macro, makes kermit.pm
  38. cklnet.c
  39. cklpro.c
  40. ckltio.c
  41. ckltxt.c            Hex-ify program
  42. ckltxt.doc          Note about hex format used by ckltxt and cklxtr
  43. cklvos.hlp          This file
  44. cklxtr.c            Un-hex program
  45. cklxtr.cm           Un-hex command macro
  46.  
  47.  
  48.  
  49.  
  50.  
  51. The following are hex formatted executables, unpack with cklxtr:
  52.  
  53. cklker.h86          C-Kermit for i860 processor
  54. cklker.h68          C-Kermit for 680x0 processor
  55. cklker.h71          C-Kermit for Continuum 7100 processor
  56. cklxtr.h86          Extraction program for i860 processor
  57. cklxtr.h68          Extraction program for 680x0 processor
  58. cklxtr.h71          Extraction program for Continuum 7100 processor
  59.  
  60.  
  61. Assuming that the ckl*.* files go on a tape with the rest of the C-Kermit
  62. sources, that's all you need.  The files that C-Kermit uses are all
  63. mentioned in cklmak.cm, other than the header files.  VOS C-Kermit uses
  64. the UNIX command processor (ckucmd, ckuu*, etc.), the script (ckuscr.c),
  65. DIAL (ckudia.c) and charset (ckuxla.c) packages, and Wart (ckwart.c).  The
  66. BOO files (ckbmkb.c and ckbunb.c) work on VOS as well, but are not
  67. necessary for C-Kermit to build or work.
  68.