home *** CD-ROM | disk | FTP | other *** search
- ECHO OFF
- CLS
- ECHO This batch file is provided to help you create a quick library
- ECHO of Simply Help! routines for your version of QuickBASIC.
- ECHO
- ECHO Press Ctrl-Break to STOP
- PAUSE
- IF b%1 == b40 GOTO Build4
- IF b%1 == b41 GOTO Build4
- IF b%1 == b45 GOTO Build4
- IF b%1 == b7 GOTO Build7
- GOTO BadStart
-
- :Build7
- link /q shlp7fs.lib, shlp7,,qbxqlb;
- IF NOT ERRORLEVEL 1 GOTO Good7
- ECHO
- ECHO ERROR creating SHLP7.QLB
- ECHO Make sure that LINK.EXE, SHLP7FS.LIB and QBXQLB.LIB
- ECHO are in the current directory and try again.
- GOTO EndIt
-
- :Good7
- ECHO
- ECHO SHLP7.QLB built successfully
- GOTO EndIt
-
- :Build4
- link /q shlp4.lib, shlp4.qlb, nul, bqlb%1;
- IF NOT ERRORLEVEL 1 GOTO Good4
- ECHO
- ECHO ERROR creating SHLP4.QLB
- ECHO Make sure that LINK.EXE, SHLP4.LIB and BQLBxx.LIB
- ECHO are in the current directory and try again.
- GOTO EndIt
-
- :Good4
- ECHO
- ECHO SHLP4.QLB built successfully.
- GOTO EndIt
-
- :BadStart
- ECHO
- ECHO You must run this batch file as follows:
- ECHO QUICKLIB ver# Where ver# = 40 for QuickBASIC 4.0
- ECHO = 41 " " 4.1 (4.00b)
- ECHO = 45 " " 4.5
- ECHO = 7 " PDS 7.1
- :Endit
- ECHO