8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 05:23:03 +01:00

Move compiler output to a log file

This commit is contained in:
brodsom 2003-08-10 23:05:26 +00:00
parent 63bd691437
commit e6df9f5ff5

View File

@ -1,10 +1,12 @@
cl -Ob2iytp -Gs -DWIN95 -D__STDC__ -W3 -G4 -Gd -MD -I..\..\src\include -I..\..\src\include\gen -DSERVER_SHUTDOWN -DSUPERSERVER -DGOVERNOR -DNOMSG -D_X86_=1 -DWIN32 -DI386 -DEXACT_NUMERICS ..\..\src\misc\blrtable.cpp
if errorlevel 1 goto :ERROR
blrtable.exe > blrtable.h
copy blrtable.h ..\..\src\include\gen\blrtable.h > nul
del blrtable.exe
del blrtable.obj
del blrtable.h
@echo off
@cl -Ob2iytp -Gs -DWIN95 -D__STDC__ -W3 -G4 -Gd -MD -I..\..\src\include -I..\..\src\include\gen -DSERVER_SHUTDOWN -DSUPERSERVER -DGOVERNOR -DNOMSG -D_X86_=1 -DWIN32 -DI386 -DEXACT_NUMERICS ..\..\src\misc\blrtable.cpp > blrtable.log 2>&1
@if errorlevel 1 goto :ERROR
@blrtable.exe > blrtable.h
@copy blrtable.h ..\..\src\include\gen\blrtable.h > nul
@del blrtable.exe
@del blrtable.obj
@del blrtable.h
goto :EOF