home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
OWL1.PAK
/
1OWL45BL.BAT
< prev
next >
Wrap
DOS Batch File
|
1995-08-29
|
1KB
|
34 lines
@echo off
rem ###########################################################################
rem
rem 1OWL45BL.BAT - (C) Copyright 1995 by Borland International
rem
rem Building ObjectWindows 1.0 with the Borland C++ 4.5 tools.
rem
rem This batch file builds the 16-bit dynamic link and large model static
rem libraries with and without debugging information.
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=.\1owl45.log
@echo Redirecting screen output to %LOGFILE%
if not exist ..\object\NUL md ..\object
if not exist ..\object\wl\NUL md ..\object\wl
if not exist ..\object\dl\NUL md ..\object\dl
rem Build static large model libraries
make -f1owl45.mak -DNOTASM -DMODEL=l >>%LOGFILE%
make -f1owl45.mak -DNOTASM -DMODEL=l -DDEBUG >>%LOGFILE%
rem Build dynamic libraries
make -f1owl45.mak -DNOTASM -DDLL >>%LOGFILE%
make -f1owl45.mak -DNOTASM -DDLL -DDEBUG >>%LOGFILE%
set logfile=