make the libantlr.so library
Note that you should compile class files, ICE's may occur when
compiling the .java source files (I suppose because of Java 1.1
language features)
First make a shared library containing antlr classes:
gcj -shared -fPIC -o libantlr.so \
--CLASSPATH=".:/usr/local/share/libgcj.zip" \
`find antlr -name "*.class"`
This generates a lot of output which can be ignored and hopefully
a libantlr.so which can be copied into the LD_LIBRARY_PATH, eg
to /usr/local/lib.
On my Linux host the result is a 2MB shared library which can be
stripped ('strip libantlr.so') down to 1.1MB. It may be further reduced
by selective compilation of only necessary classes ...