#!/bin/bash

# Instructions: set environment variables as shown below, then 
#    run "escj File.java", or run "escj -gui File.java"
#
# To set the environment variables:
# 1) either run "source setup-cs411" in you cygwin window
# 2) or cut and paste the export declarations into your ~/.bashrc file
# 3) or set up these variables in Windows: 
#       My Computer -> Properties -> Advanced -> Environment Variables

# The JAVA environment variable must point to the java 1.4 executable 
export JAVA='/cygdrive/c/Program Files/Java/j2re1.4.2_13/bin/java'

# The ESCTOOLS_ROOT variable must point to the parent directory 
# where EscJava2 is installed.
export ESCTOOLS_ROOT='/cygdrive/c/software'

# No need to change these
export ESCTOOLS_RELEASE=$ESCTOOLS_ROOT/EscJava2
export SIMPLIFY=Simplify-1.5.4.exe
export PATH=${PATH}:$ESCTOOLS_RELEASE
