#!/bin/sh
# This script will run Simplicity For Java on a Unix computer.

# Change the next line to the path of your Simplicity install directory.
export SIMPHOME=/home/auser/simplicity/
 
# Change the next line to the location of the java binary on your machine.
export JAVABIN=/usr/jdk1.2.2/jre/bin/java

# On some SCO Unixware machines, the next line should be uncommented
# (remove the #) and the line after it should be removed.
# export MX=
export MX=-mx100m

# On some Solaris machines, There will be a stall shortly after starting. You
# can fix this by uncommenting the next line and removing the line after it.
# export JIT=-Djava.compiler=NONE
export JIT=

export CLASSPATH=$SIMPHOME/simplicity.jar:$SIMPHOME/swingall.jar:$SIMPHOME/datarep_common.jar
exec $JAVABIN $JIT $MX datarep.Simplicity
