home *** CD-ROM | disk | FTP | other *** search
- echo off
- rem
- rem buildtc.bat
- rem
- rem Builds all four Grafix libraries from scratch using Turbo C and
- rem writes any errors to the file ERRS.
- rem
- del *.obj
- del grafixl.lib
- make -Dcflags=-ml -Dasmflags=/DLARGE -Dlibname=grafixl -fmaketc >errs
- del *.obj
- del grafixm.lib
- make -Dcflags=-mm -Dasmflags=/DMEDIUM -Dlibname=grafixm -fmaketc >>errs
- del *.obj
- del grafixc.lib
- make -Dcflags=-mc -Dasmflags=/DCOMPACT -Dlibname=grafixc -fmaketc >>errs
- del *.obj
- del grafix.lib
- make -Dcflags=-ms -Dasmflags=/DSMALL -Dlibname=grafix -fmaketc >>errs
-