home *** CD-ROM | disk | FTP | other *** search
/ Collection of Hack-Phreak Scene Programs / cleanhpvac.zip / cleanhpvac / SOURCE.ZIP / DSME10.ZIP / MAKE.BAT < prev   
DOS Batch File  |  1993-09-28  |  287b  |  16 lines

  1. @echo off
  2. if not exist DEMO.asm goto end
  3. masm DEMO;
  4. if not exist DEMO.obj goto end
  5. link DEMO+DSME;
  6. del DEMO.obj
  7. if not exist DEMO.exe goto end
  8. if not exist DEMO.com goto con
  9. del DEMO.com
  10. :con
  11. exe2bin DEMO.exe DEMO.com
  12. del DEMO.exe
  13. if not exist DEMO.com goto end
  14. cls
  15. :end
  16.