8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 22:03:03 +01:00
firebird-mirror/builds/win32/parse.bat
2006-04-20 02:26:24 +00:00

19 lines
373 B
Batchfile

@echo off
@echo.
@call setenvvar.bat
@if errorlevel 1 (goto :END)
@echo Generating parse.cpp and dsql.tab.h
%ROOT_PATH%\gen\btyacc -l -d -S %ROOT_PATH%\src\dsql\btyacc_fb.ske %ROOT_PATH%\src\dsql\parse.y
@if errorlevel 1 (exit /B 1)
@copy y_tab.h %ROOT_PATH%\src\dsql\dsql.tab.h > nul
@copy y_tab.c %ROOT_PATH%\src\dsql\parse.cpp > nul
@del y_tab.h
@del y_tab.c
:END