aboutsummaryrefslogtreecommitdiffstats
path: root/src/scripts/jcpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripts/jcpp')
-rwxr-xr-xsrc/scripts/jcpp32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/scripts/jcpp b/src/scripts/jcpp
deleted file mode 100755
index ed167c5..0000000
--- a/src/scripts/jcpp
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/bin/sh
-
-CPP_JAR=anarres-cpp.jar
-
-if [ -n "$CPP_ROOT" ] ; then
- CPP_ROOT="$CPP_ROOT"
-elif [ -f lib/$CPP_JAR ] ; then
- CPP_ROOT="."
-elif [ -f ../lib/$CPP_JAR ] ; then
- CPP_ROOT=".."
-elif [ -f $(dirname $0)/lib/$CPP_JAR ] ; then
- CPP_ROOT=$(dirname $0)
-else
- echo "Could not find $CPP_JAR. Please set CPP_ROOT."
- exit 1
-fi
-
-if [ -z "$CPP_LIB" ] ; then
- CPP_LIB=$CPP_ROOT/lib
-fi
-
-if [ -z "$CPP_CLASSPATH" ] ; then
- CPP_CLASSPATH="$(ls $CPP_LIB/*.jar | tr '\n' ':')"
-fi
-
-if [ -z "$CPP_MAINCLASS" ] ; then
- CPP_MAINCLASS=org.anarres.cpp.Main
-fi
-
-CPP_JFLAGS="-Xmx128M"
-
-exec java $CPP_JFLAGS -cp "$CPP_CLASSPATH" $CPP_MAINCLASS "$@"