1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/win32/doflex.cmd
Jeff Cohen 176bb3e5ed Match changes to unix build system.
llvm-svn: 26167
2006-02-14 06:12:08 +00:00

21 lines
441 B
Batchfile
Executable File

@echo off
rem doflex.cmd prefix mode target source
rem mode - either debug or release
rem target - generated parser file name without extension
rem source - input to bison
if "%1"=="debug" (set flags=-t) else (set flags=-t)
rem Test for presence of flex.
flex --help >NUL
if errorlevel 1 goto noflex
rem Run flex.
flex %flags% >%2.cpp %3
exit
:noflex
echo Flex not found. Using pre-generated files.
copy %~pn3.cpp.cvs %2.cpp
exit