home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emxdev8f.zip / OMFLIB.CMD < prev    next >
OS/2 REXX Batch file  |  1992-12-30  |  420b  |  19 lines

  1. @echo off
  2. if "%1"=="" %0 #ok# libgcc libc libg libm libos2 libtermc libgpp libstdio libobjc libcurse libbsd libgraph libvideo libemx1 libemx2 libemxio
  3. if "%1"=="#ok#" goto loop
  4. echo Usage: omflib
  5. echo.
  6. echo This command builds .lib files from .a files.
  7. goto end
  8.  
  9. :loop
  10. shift
  11. if "%1"=="" goto end
  12. if exist %1.lib goto loop
  13. if not exist %1.a goto loop
  14. echo Building %1.lib
  15. emxomf -l %1.a
  16. goto loop
  17.  
  18. :end
  19.