4ef589
#!/bin/sh
4ef589
#
4ef589
# antlr script
4ef589
# JPackage Project <http://www.jpackage.org/>
4ef589
4ef589
# Source functions library
4ef589
if [ -f /usr/share/java-utils/java-functions ] ; then
4ef589
  . /usr/share/java-utils/java-functions
4ef589
else
4ef589
  echo "Can't find functions library, aborting"
4ef589
  exit 1
4ef589
fi
4ef589
4ef589
# Configuration
4ef589
MAIN_CLASS="antlr.Tool"
4ef589
BASE_FLAGS=""
4ef589
BASE_JARS="antlr.jar"
4ef589
4ef589
# Set parameters
4ef589
set_jvm
4ef589
set_classpath $BASE_JARS
4ef589
set_flags $BASE_FLAGS
4ef589
4ef589
# Let's start
4ef589
run "$@"