2005-10-26 05:37:34 +00:00
|
|
|
@echo off
|
|
|
|
rem dobison.cmd prefix mode target source
|
|
|
|
rem prefix - passed to bison as -p<prefix>
|
|
|
|
rem mode - either debug or release
|
|
|
|
rem target - generated parser file name without extension
|
|
|
|
rem source - input to bison
|
|
|
|
|
|
|
|
if "%2"=="debug" (set flags=-tvdo) else (set flags=-vdo)
|
|
|
|
|
2005-10-27 01:10:36 +00:00
|
|
|
rem Test for presence of bison.
|
|
|
|
bison --help >NUL
|
|
|
|
if errorlevel 1 goto nobison
|
2005-10-26 05:37:34 +00:00
|
|
|
|
2005-10-27 01:10:36 +00:00
|
|
|
rem Run bison.
|
|
|
|
bison -p%1 %flags%%3.cpp %4 && move %3.hpp %3.h
|
|
|
|
exit
|
|
|
|
|
|
|
|
:nobison
|
|
|
|
echo Bison not found. Using pre-generated files.
|
2006-02-16 04:07:03 +00:00
|
|
|
copy %~pn4.cpp.cvs %3.cpp
|
|
|
|
copy %~pn4.h.cvs %3.h
|
2005-10-27 01:10:36 +00:00
|
|
|
exit
|