diff options
Diffstat (limited to 'xorg-server/hw/xwin/doflexbison.bat')
-rwxr-xr-x | xorg-server/hw/xwin/doflexbison.bat | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/xorg-server/hw/xwin/doflexbison.bat b/xorg-server/hw/xwin/doflexbison.bat new file mode 100755 index 000000000..a29508bcb --- /dev/null +++ b/xorg-server/hw/xwin/doflexbison.bat @@ -0,0 +1,18 @@ +@echo off
+setlocal
+
+cd "%~dp0"
+
+set M4=..\..\..\tools\mhmake\m4.exe
+set BISON_PKGDATADIR=../../../tools/mhmake/src/bisondata
+
+set path=..\..\..\tools\mhmake;%path%
+
+..\..\..\tools\mhmake\bison.exe -d -o%1/winprefsyacc.c winprefsyacc.y
+
+copy "..\..\..\tools\mhmake\flex++.exe" flex.exe
+flex.exe -i -o%1/winprefslex.c winprefslex.l
+del flex.exe
+
+endlocal
+
|