runtest.bat
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:1k
- echo off
- rem
- rem Demonstrate how to subclass a grammar and actually get it to compile.
- rem Biggest issue is making sure ANTLR, compiler, and interpreter can see
- rem the supergrammar and classes needed by it. In this case, the subgrammar
- rem uses the supergrammar's lexer; it must be visible for the compiler and
- rem interpreter.
- rem
- rem If you put a lexer here in this dir, you would not need all this
- rem classpath crap.
- rem
- echo on
- java antlr.Tool -glib "..tinyctinyc.g" subc.g
- javac -classpath c:jdk1.1.7Alibclasses.zip;.;..tinyc;d:Projectsantlr-2.6.0 *.java
- echo off
- rem
- rem have to change the next classpath to point to your 2.6.0 directory not mine.
- rem
- echo on
- java -classpath c:jdk1.1.7Alibclasses.zip;.;..tinyc;d:Projectsantlr-2.6.0 Main < input.c