home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Professional / OS2PRO194.ISO / os2 / prgramer / unix / emx / bin / makebin1.cmd < prev    next >
OS/2 REXX Batch file  |  1992-08-11  |  201b  |  12 lines

  1. @echo off
  2. if "%1"=="" goto usage
  3. if not "%2"=="" goto start
  4. :usage
  5. echo Usage: makebin
  6. goto end
  7. :start
  8. copy %1 \emx\new\%2
  9. emxbind -bsq \emx\new\%2 %3 %4 %5 %6 %7 %8 %9
  10. del \emx\new\%2
  11. :end
  12.