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 >
Wrap
OS/2 REXX Batch file
|
1992-12-30
|
420b
|
19 lines
@echo off
if "%1"=="" %0 #ok# libgcc libc libg libm libos2 libtermc libgpp libstdio libobjc libcurse libbsd libgraph libvideo libemx1 libemx2 libemxio
if "%1"=="#ok#" goto loop
echo Usage: omflib
echo.
echo This command builds .lib files from .a files.
goto end
:loop
shift
if "%1"=="" goto end
if exist %1.lib goto loop
if not exist %1.a goto loop
echo Building %1.lib
emxomf -l %1.a
goto loop
:end