commit 99b792ad273a10b55af25d04d34dc4745c2cca40 parent 02de4fe0a0d613eb11b45f7dfc242d5e3fb225f8 Author: Simos Xenitellis <simos@gnome.org> Date: Tue, 19 May 2009 00:02:53 +0100 Added example on running antlr Diffstat:
M | README | | | 9 | ++++++++- |
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/README b/README @@ -31,6 +31,13 @@ All *.g files should be processed with ANTLR. Assuming you installed Antlr 3.1 in your CLASSPATH, you compile a grammar (*.g) with java org.antlr.Tool *.g -You run this program with +Here is a practical example with Antlr 3.1.2. + wget http://antlr.org/download/Python/antlr_python_runtime-3.1.2-py2.5.egg + sudo easy_install antlr_python_runtime-3.1.2-py2.5.egg + wget http://antlr.org/download/antlr-3.1.2.jar + export CLASSPATH=$CLASSPATH:antlr-3.1.2.jar + java org.antlr.Tool *.g + +You finally run this program with ./KeyboardLayoutEditor