mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 22:43:04 +01:00
e528997dc7
Refactor common code (mostly into set_build_target.bat). Ensure that all VS2005 x64 output is clearly generated into x64 directories, and likewise for Win32 output
19 lines
388 B
Batchfile
19 lines
388 B
Batchfile
|
|
@echo off
|
|
|
|
@echo.
|
|
|
|
@call setenvvar.bat
|
|
@if errorlevel 1 (goto :END)
|
|
|
|
@echo Generating parse.cpp and dsql.tab.h
|
|
|
|
%FB_ROOT_PATH%\gen\btyacc -l -d -S %FB_ROOT_PATH%\src\dsql\btyacc_fb.ske %FB_ROOT_PATH%\src\dsql\parse.y
|
|
@if errorlevel 1 (exit /B 1)
|
|
@copy y_tab.h %FB_ROOT_PATH%\src\dsql\dsql.tab.h > nul
|
|
@copy y_tab.c %FB_ROOT_PATH%\src\dsql\parse.cpp > nul
|
|
@del y_tab.h
|
|
@del y_tab.c
|
|
|
|
:END
|