home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / intel86b / kermit.csd < prev    next >
Text File  |  2020-01-01  |  805b  |  25 lines

  1. ;       KERMIT.CSD  (AJG, 22-August-85)
  2. ; This command file is used to compile and link Kermit.
  3. ; Invoke it with the command
  4. ;           SUBMIT KERMIT.CSD
  5. ; (All Kermit files are assumed to be in the default directory.)
  6. ;
  7. ; Compile all Kermit modules:
  8. PLM86   KERMIT.P86
  9. PLM86   KERUTIL.P86
  10. PLM86   KERSYS.P86
  11. ; Link the Kermit modules together and to the system interface libraries:
  12. LINK86  KERMIT.OBJ,            &
  13.         KERUTIL.OBJ,           &
  14.         KERSYS.OBJ,            &
  15.         /RMX86/LIB/HPIFL.LIB,  &
  16.         /RMX86/LIB/LPIFL.LIB,  &
  17.         /RMX86/LIB/EPIFL.LIB,  &
  18.         /RMX86/LIB/IPIFL.LIB,  &
  19.         /RMX86/LIB/RPIFL.LIB   &
  20. TO      KERMIT  OBJECTCONTROLS(PURGE)  BIND  &
  21.         SEGSIZE(STACK(+800H))  MEMPOOL(+10H,+40000H)
  22. ;
  23. ; Finished.  Kermit may now be run by typing KERMIT.
  24. ;
  25.