home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem ###########################################################################
- rem
- rem BUILDCLS.BAT - (C) Copyright 1995 by Borland International
- rem
- rem Building the object-based container class libraries.
- rem
- rem This batch file builds the object-based container library for use with
- rem ObjectWindows 1.0. 16-bit large model static and dynamic link libraries
- rem are built with and without debugging information. BuildCls.bat should be
- rem run from the \bc45\source\classlib directory.
- rem
- rem When using this batch file, you will notice a number of warnings
- rem generated by TLib indicating that a given module was not found in
- rem the library. These warnings occur when creating the library, as
- rem opposed to updating it, and can be ignored.
- rem
- rem ###########################################################################
-
- set LOGFILE=.\buildcls.log
- @echo Redirecting screen output to %LOGFILE%
-
- rem Build static libraries
- make "-DBCC=bcc -x-" -DNAME=tclassl -DOBJECTS -DDOS -DMODEL=l >%LOGFILE%
- make "-DBCC=bcc -x-" -DNAME=tclasdl -DOBJECTS -DDOS -DMODEL=l -DDBG >>%LOGFILE%
-
- rem Build dynamic libraries
- make "-DBDD=bcc -x-" -DNAME=tclass -DOBJECTS -DDOS -DDLL >>%LOGFILE%
- make "-DBDD=bcc -x-" -DNAME=tclasd -DOBJECTS -DDOS -DDLL -DDBG >>%LOGFILE%
-
- set logfile=
-
-