home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / ncr9800 / compile.ins < prev    next >
Text File  |  2020-01-01  |  1KB  |  37 lines

  1. IVS-Kermit cOmpilation instructions:
  2.  
  3. From an IVS session or SCL procedure file:
  4.  
  5. REC (L=2500,V=1500,STAC=250,PROT=600);
  6.  
  7. CC(FN=FILENAME_C,LNK=NO,OPTM=TRUE,GLBOPT='-R -o FILENAME_O',
  8.    POPT='-bo -X1',COPT='-b -Xv');!"
  9.  
  10. ***NOTE***
  11.     IVS-Kermit object modules end in _O. MCS-Kermit modules
  12.         end in _M. This is done to separate MCS-Kermit object
  13.         from IVS-Kermit object. There are several common object
  14.         modules between MCS / IVS-Kermit, they do not require the
  15.         _M convention. Any naming convention is exceptable,
  16.         as long as the modules are separated.
  17.         The common object modules are listed below.
  18.  
  19.         Common object modules:
  20.  
  21.           BIND=CKVFN2_O
  22.           BIND=CKVFNS_O
  23.           BIND=CKVFI2_O
  24.           BIND=CKVFIO_O
  25.           BIND=VKNCRLIO  NCRL source module
  26.           BIND=CKVMCS_O  *** COMPILE USING IVS INSTRUCTIONS
  27.           BIND=CKVBUF_O  *** COMPILE USING IVS INSTRUCTIONS
  28.  
  29. MCS-Kermit compilation instructions:
  30.  
  31. From an IVS session or SCL procedure file:
  32.  
  33. REC (L=2500,V=1500,STAC=250,PROT=600);
  34.  
  35. CC(FN=FILENAME_C,LNK=NO,OPTM=TRUE,GLBOPT='-R -o FILENAME_M',
  36.    POPT='-bo -X1 -D MCS_FLAG',COPT='-b -Xv');!"
  37.