home *** CD-ROM | disk | FTP | other *** search
- @echo off
- GOTO CONTD:
-
- There has been lots of confusion about LIBs and QLBs in this
- conference from some people, lately. It might be just a little bit
- helpful to add this small batch file into a directory in the path:
-
- ; LIB2QLB.BAT Syntax: LIB2QLB libname
-
- You may want to customize LINK's paramters, but this will work most
- of the time. It just makes it that much easier for quick
- conversion.
-
- Nathan
-
- :CONTD
- @echo off
- IF $%1$==$$ goto NOPARMS
- LINK %1.LIB/Q/SE:512,,NUL,\QB\BQLB45
- goto end
- :NOPARMS
- echo Syntax = LIB2OBJ libname
- :end