diff options
author | CoprDistGit <infra@openeuler.org> | 2024-08-01 08:47:18 +0000 |
---|---|---|
committer | CoprDistGit <infra@openeuler.org> | 2024-08-01 08:47:18 +0000 |
commit | d4855d1029e426bdff1e097e3dd4526cfc9e5794 (patch) | |
tree | 2753db87abf9000efd4e909f7ca4a43e12445f51 /antlr-script | |
parent | 6539588013ea8c371baf12dfd4f19412f9f4c331 (diff) |
automatic import of antlropeneuler24.03_LTS
Diffstat (limited to 'antlr-script')
-rw-r--r-- | antlr-script | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/antlr-script b/antlr-script new file mode 100644 index 0000000..6389106 --- /dev/null +++ b/antlr-script @@ -0,0 +1,25 @@ +#!/bin/sh +# +# antlr script +# JPackage Project <http://www.jpackage.org/> + +# Source functions library +if [ -f /usr/share/java-utils/java-functions ] ; then + . /usr/share/java-utils/java-functions +else + echo "Can't find functions library, aborting" + exit 1 +fi + +# Configuration +MAIN_CLASS="antlr.Tool" +BASE_FLAGS="" +BASE_JARS="antlr.jar" + +# Set parameters +set_jvm +set_classpath $BASE_JARS +set_flags $BASE_FLAGS + +# Let's start +run "$@" |