home *** CD-ROM | disk | FTP | other *** search
/ MS DOS Archives 1 / MS-DOS_Archives_Volume_One_Walnut_Creek.iso / msdos / graphics / grafxlib.arc / BUILDTC.BAT < prev    next >
DOS Batch File  |  1987-08-31  |  553b  |  20 lines

  1. echo off
  2. rem
  3. rem buildtc.bat
  4. rem
  5. rem Builds all four Grafix libraries from scratch using Turbo C and
  6. rem  writes any errors to the file ERRS.
  7. rem
  8. del *.obj
  9. del grafixl.lib
  10. make -Dcflags=-ml -Dasmflags=/DLARGE -Dlibname=grafixl -fmaketc >errs
  11. del *.obj
  12. del grafixm.lib
  13. make -Dcflags=-mm -Dasmflags=/DMEDIUM -Dlibname=grafixm -fmaketc >>errs
  14. del *.obj
  15. del grafixc.lib
  16. make -Dcflags=-mc -Dasmflags=/DCOMPACT -Dlibname=grafixc -fmaketc >>errs
  17. del *.obj
  18. del grafix.lib
  19. make -Dcflags=-ms -Dasmflags=/DSMALL -Dlibname=grafix -fmaketc >>errs
  20.