remove the win32 tree, it's stale and confusing.
[oota-llvm.git] / win32 / doflex.cmd
diff --git a/win32/doflex.cmd b/win32/doflex.cmd
deleted file mode 100755 (executable)
index 8f32fbd..0000000
+++ /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