mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
185 B
10 lines
185 B
@echo off
|
|
cl -E %1 | number +d -n > docf.raw
|
|
stripact docf.raw > bnf.raw
|
|
docstyle bnf.raw > %2
|
|
if not errorlevel 0 goto error
|
|
goto done
|
|
:error
|
|
@echo on
|
|
echo "Unparseable grammar"
|
|
:done
|