home *** CD-ROM | disk | FTP | other *** search
/ hobbes.nmsu.edu / 2008-06-02_hobbes.nmsu.edu.zip / dos / 2gbfix.zip / bld.bat < prev    next >
DOS Batch File  |  1996-04-10  |  153b  |  10 lines

  1. @echo off
  2. masm /l %1;
  3. if errorlevel 1 goto end
  4. link %1;
  5. if errorlevel 1 goto end
  6. exe2bin %1.exe %1.com
  7. if errorlevel 1 goto end
  8. del %1.exe
  9. :end
  10.