home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / progtool / dos32v12 / mk.bat < prev    next >
Encoding:
DOS Batch File  |  1993-10-17  |  251 b   |  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.