home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 May / Pcwk5b98.iso / Borland / Cplus45 / BC45 / OWL1.PAK / BUILDCLS.BAT < prev    next >
DOS Batch File  |  1995-08-29  |  1KB  |  33 lines

  1. @echo off
  2. rem ###########################################################################
  3. rem
  4. rem   BUILDCLS.BAT - (C) Copyright 1995 by Borland International
  5. rem
  6. rem   Building the object-based container class libraries.
  7. rem
  8. rem   This batch file builds the object-based container library for use with
  9. rem   ObjectWindows 1.0. 16-bit large model static and dynamic link libraries
  10. rem   are built with and without debugging information. BuildCls.bat should be
  11. rem   run from the \bc45\source\classlib directory.
  12. rem
  13. rem   When using this batch file, you will notice a number of warnings
  14. rem   generated by TLib indicating that a given module was not found in
  15. rem   the library. These warnings occur when creating the library, as
  16. rem   opposed to updating it, and can be ignored.
  17. rem
  18. rem ###########################################################################
  19.  
  20. set LOGFILE=.\buildcls.log
  21. @echo Redirecting screen output to %LOGFILE%
  22.  
  23. rem   Build static libraries
  24. make "-DBCC=bcc -x-" -DNAME=tclassl -DOBJECTS -DDOS -DMODEL=l >%LOGFILE%
  25. make "-DBCC=bcc -x-" -DNAME=tclasdl -DOBJECTS -DDOS -DMODEL=l -DDBG >>%LOGFILE%
  26.  
  27. rem   Build dynamic libraries
  28. make "-DBDD=bcc -x-" -DNAME=tclass  -DOBJECTS -DDOS -DDLL >>%LOGFILE%
  29. make "-DBDD=bcc -x-" -DNAME=tclasd  -DOBJECTS -DDOS -DDLL -DDBG >>%LOGFILE%
  30.  
  31. set logfile=
  32.  
  33.