home *** CD-ROM | disk | FTP | other *** search
- ; KERMIT.CSD (AJG, 22-August-85)
- ; This command file is used to compile and link Kermit.
- ; Invoke it with the command
- ; SUBMIT KERMIT.CSD
- ; (All Kermit files are assumed to be in the default directory.)
- ;
- ; Compile all Kermit modules:
- PLM86 KERMIT.P86
- PLM86 KERUTIL.P86
- PLM86 KERSYS.P86
- ; Link the Kermit modules together and to the system interface libraries:
- LINK86 KERMIT.OBJ, &
- KERUTIL.OBJ, &
- KERSYS.OBJ, &
- /RMX86/LIB/HPIFL.LIB, &
- /RMX86/LIB/LPIFL.LIB, &
- /RMX86/LIB/EPIFL.LIB, &
- /RMX86/LIB/IPIFL.LIB, &
- /RMX86/LIB/RPIFL.LIB &
- TO KERMIT OBJECTCONTROLS(PURGE) BIND &
- SEGSIZE(STACK(+800H)) MEMPOOL(+10H,+40000H)
- ;
- ; Finished. Kermit may now be run by typing KERMIT.
- ;
-