#!/bin/sh
#
# * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
# * This file is part of SableCC.                             *
# * See the file "LICENSE" for copyright information and the  *
# * terms and conditions for copying, distribution and        *
# * modification of SableCC.                                  *
# * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
#
# IMPORTANT: Put the absolute path to sablecc.jar below.
if test -f /usr/bin/java-sablevm ; then
    /usr/bin/java-sablevm -jar /usr/share/java/sablecc.jar $*
else
    java -jar /usr/share/java/sablecc.jar $*
fi
