home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / MKHOOK1.ZIP / MLC-W386.CMD < prev   
OS/2 REXX Batch file  |  1992-08-30  |  259b  |  10 lines

  1. rem This assembles and links an asm file to an EXE file
  2. ml /c %1.asm
  3. IF errorlevel 1  goto errexit
  4. link386 /PM:PM /ALIGN:4 /BASE:0x10000 /E %1.obj,,,c:\toolkt20\os2lib\os2386.lib;,%1.def ;
  5. del *.obj
  6. del *.map
  7. quit
  8. :errexit
  9. Echo Compile Error NO Link
  10.