home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Simtel MSDOS 1992 September
/
Simtel20_Sept92.cdr
/
msdos
/
graphics
/
grafxlib.arc
/
BUILDMSC.BAT
next >
Wrap
DOS Batch File
|
1987-08-31
|
523b
|
20 lines
echo off
rem
rem buildmsc.bat
rem
rem Builds all four Grafix libraries from scratch using MS C and
rem writes any errors to the file ERRS.
rem
del *.obj
del grafixl.lib
make cflags=/AL asmflags=/DLARGE libname=grafixl makemsc >errs
del *.obj
del grafixm.lib
make cflags=/AM asmflags=/DMEDIUM libname=grafixm makemsc >>errs
del *.obj
del grafixc.lib
make cflags=/AC asmflags=/DCOMPACT libname=grafixc makemsc >>errs
del *.obj
del grafix.lib
make cflags=/AS asmflags=/DSMALL libname=grafix makemsc >>errs