home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c160 / 2.ddi / MSC / M4FIVE.BAT < prev    next >
Encoding:
DOS Batch File  |  1990-06-22  |  434 b   |  18 lines

  1. ECHO OFF
  2. ECHO :  This File Rebuilds the Microsoft C Library   M4.LIB
  3. ECHO :  During this process files 'M4.LIB' and 'OUT' are erased.
  4. ECHO :
  5. ECHO :  Warning:  Install Code Base 4 before running this batch file.
  6. ECHO :  Press Ctrl C or Break to abort.
  7. ECHO :
  8. ECHO :  This command file is for MSC 5.1.
  9. ECHO :
  10. ECHO ON
  11. PAUSE
  12. erase  out 
  13. erase  m4.lib
  14. cl -c -W3 -Zl -AL -DDO_ERRNO -DMSC *.C  >>out
  15. lib    @m4
  16. type   out
  17. 
  18.