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.
12 lines
204 B
12 lines
204 B
@echo off
|
|
p0 %1 > grmhead
|
|
p1 %1 > grmtail
|
|
type grmhead > grammar.y
|
|
type %2 >> grammar.y
|
|
type grmtail >> grammar.y
|
|
if not errorlevel 0 goto error
|
|
goto done
|
|
:error
|
|
@echo on
|
|
echo "Unparseable grammar"
|
|
:done
|