home *** CD-ROM | disk | FTP | other *** search
- ECHO OFF
- ECHO : This File Rebuilds the Microsoft C Library W4.LIB
- ECHO : During this process files 'W4.LIB' and 'OUT' are erased.
- ECHO :
- ECHO : Warning: Install CodeBase 4.2 & 4.5 before running this batch file.
- ECHO : Press Ctrl C or Break to abort.
- ECHO :
- ECHO : If you are using MSC 5.1, use command file 'm4scrn5.bat' instead.
- ECHO :
- ECHO : The compile is broken into sections because if everything is
- ECHO : compiled at once, MSC 6.0 returns an 'out of memory' error
- ECHO : half way through.
- ECHO :
- ECHO : Note that the library is being built using the '-Gs' and 'Gr'
- ECHO : compile switches. This is done to make the library smaller
- ECHO : and faster. Consequently, the compilations of your application
- ECHO : programs need to use these switches too.
- ECHO :
- ECHO : This compilation does produce some warning messages under
- ECHO : MSC 6.0. Some of the warnings refer to unused parameters.
- ECHO : In these cases, the parameters are used in other compile options.
- ECHO : Other warnings refer to completely valid and safe code. They
- ECHO : can be safely ignored.
- ECHO ON
- PAUSE
- erase out
- erase w4.lib
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC C4_F.C >out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC G4.C >out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC G4CHAR.C >>out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC G4FIELD2.C >>out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC G4MENU.C >>out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC H4.C >>out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC H4MOVE.C >>out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC H4FIRST.C >>out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC N4.C >>out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC N4MESSAG.C >>out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC P4MISC.C >>out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC U4ERROR.C >>out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC U4FILE.C >>out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC U4NAME_F.C >>out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC U4UPGRAD.C >>out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC W4.C >>out
- cl %1 %2 %3 %4 -c -W3 -Zl -AL -DMSC W4INIT_U.C >>out
- lib @w4
-