$! VMAKLB.COM $! $! Make run-time library for C programs. NOTE: You must not have any $! files with filetype ".OB" in your default directory. $! $! $! Assignments: $! SR: [-.otscom] Library source, no I/O $! [-.otsio] Library source, Op. sys. dependent $! OB: [-.otsio] Work account $! OU: [-] Library output $! LS: nl: Listings $! $ VERIFY = 'F$VERIFY(1) $ ASSIGN [-] OU $ ASSIGN [-.OTSIO] OB $ ASSIGN NL: LS $ DEL OB:*.OB;* $! $! Assemble the library $! $ ASSIGN [-.OTSCOM] SR $ MCR MAC @SR:XCLBAS.CMD $! $ ASSIGN [-.OTSIO] SR $ MCR MAC @SR:XILBAS.CMD $! $ COPY OB:DTOA.OB OU:DTOA.OBJ ! True float->ascii $ DELETE OB:DTOA.OB;* ! isn't put in the library $ COPY OB:ATOF.OB OU:ATOF.OBJ ! True ascii->float $ DELETE OB:ATOF.OB;* ! isn't put in the library $ COPY OB:*.OB OB:OTS.TMP $ DELETE OB:*.OB;* $ MCR LBR OU:C/CR=OB:OTS.TMP $ DELETE OB:OTS.TMP;* $ IF 'VERIFY' .EQ. 0 THEN SET NOVERIFY $! $! Library build complete $!