which included commits to RCS files with non-trunk default branches. git-svn-id: svn://10.65.10.50/trunk@5403 c028cbd2-c16b-5b4b-a496-9718f37d4682
49 lines
1.1 KiB
Plaintext
Executable File
49 lines
1.1 KiB
Plaintext
Executable File
/* VMCOMPIL EXEC Unzip compile for VM/CMS */
|
|
/* Author : George Petrov, 11 Apr 1995 */
|
|
|
|
signal on error
|
|
|
|
parms = '(long def(VM_CMS)'
|
|
|
|
say 'Compiling BITS C...'
|
|
'cc bits c 'parms
|
|
say 'Compiling TREES C...'
|
|
'cc trees c 'parms
|
|
say 'Compiling CRYPT C...'
|
|
'cc crypt c 'parms
|
|
say 'Compiling TTYIO C...'
|
|
'cc ttyio c 'parms
|
|
say 'Compiling DEFLATE C...'
|
|
'cc deflate c 'parms
|
|
say 'Compiling FILEIO C...'
|
|
'cc fileio c 'parms
|
|
say 'Compiling GLOBALS C...'
|
|
'cc globals c 'parms
|
|
say 'Compiling ZIP C...'
|
|
'cc zip c 'parms
|
|
say 'Compiling UTIL C...'
|
|
'cc util c 'parms
|
|
say 'Compiling CRC32 C...'
|
|
'cc crc32 c 'parms
|
|
say 'Compiling CRCTAB C...'
|
|
'cc crctab c 'parms
|
|
say 'Compiling ZIPFILE C...'
|
|
'cc zipfile c 'parms
|
|
say 'Compiling ZIPUP C...'
|
|
'cc zipup c 'parms
|
|
say 'Compiling CMSMVS C...'
|
|
'cc cmsmvs c 'parms
|
|
say 'Compiling CMS C...'
|
|
'cc cms c 'parms
|
|
|
|
say 'Linking all files...'
|
|
'cmod zip zip bits trees crypt deflate fileio globals ttyio',
|
|
'util crc32 crctab zipfile zipup cmsmvs cms'
|
|
say 'All Done!'
|
|
say "To run enter : ZIP parms"
|
|
exit rc
|
|
|
|
error:
|
|
say 'Error durring compilation!'
|
|
exit rc
|