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

  1. @echo off
  2. rem ###########################################################################
  3. rem
  4. rem   1OWL45BL.BAT - (C) Copyright 1995 by Borland International
  5. rem
  6. rem   Building ObjectWindows 1.0 with the Borland C++ 4.5 tools.
  7. rem
  8. rem   This batch file builds the 16-bit dynamic link and large model static
  9. rem   libraries with and without debugging information.
  10. rem
  11. rem   When using this batch file, you will notice a number of warnings
  12. rem   generated by TLib indicating that a given module was not found in
  13. rem   the library. These warnings occur when creating the library, as
  14. rem   opposed to updating it, and can be ignored.
  15. rem
  16. rem ###########################################################################
  17. set LOGFILE=.\1owl45.log
  18. @echo Redirecting screen output to %LOGFILE%
  19.  
  20. if not exist ..\object\NUL md ..\object
  21. if not exist ..\object\wl\NUL md ..\object\wl
  22. if not exist ..\object\dl\NUL md ..\object\dl
  23.  
  24. rem   Build static large model libraries
  25. make -f1owl45.mak -DNOTASM -DMODEL=l >>%LOGFILE%
  26. make -f1owl45.mak -DNOTASM -DMODEL=l -DDEBUG >>%LOGFILE%
  27.  
  28. rem   Build dynamic libraries
  29. make -f1owl45.mak -DNOTASM -DDLL >>%LOGFILE%
  30. make -f1owl45.mak -DNOTASM -DDLL -DDEBUG >>%LOGFILE%
  31.  
  32. set logfile=
  33.  
  34.