home *** CD-ROM | disk | FTP | other *** search
/ High Voltage Shareware / high1.zip / high1 / DIR13 / DOS32V12.ZIP / MK.BAT < prev    next >
DOS Batch File  |  1993-10-17  |  251b  |  12 lines

  1. @echo off
  2. echo    A batch file to assemble for the DOS extender
  3. if not exist %1.ASM goto :NotFound
  4. tasm /z /p %1
  5. if not exist %1.OBJ goto :Exit
  6. tlink /3  dos32.obj %2 %3 %4 %5 %1, %1
  7. goto :Exit
  8.  
  9. :NotFound
  10. echo     %1.ASM   NOT FOUND
  11. :Exit
  12.