diff options
Diffstat (limited to 'contrib/llvm/win32/doflex.cmd')
-rwxr-xr-x | contrib/llvm/win32/doflex.cmd | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/contrib/llvm/win32/doflex.cmd b/contrib/llvm/win32/doflex.cmd deleted file mode 100755 index 8f32fbd..0000000 --- a/contrib/llvm/win32/doflex.cmd +++ /dev/null @@ -1,20 +0,0 @@ -@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 |