#!/bin/sh
# @(#)$Id: kjc-cygwin,v 1.11 2000/05/18 20:33:54 leavens Exp $
#
# kjc -- script for invoking the Kopi Java Compiler
#
# SYNOPSIS: set CLASSPATH and run kjc

# If needed, change the following configuration parameters for your system
# by changing what is to the right of the equals sign (=) on the next 5 defs
: ${PATHSEP=';'}                         # change to ':' for Unix
: ${FILESEP='\'}                         # change to '/' for Unix
: ${KJCDIR='c:\cygwin\usr\unsup\kopi'}   # local home of KJC

CLASSPATH=".${PATHSEP}${KJCDIR}${FILESEP}kjc-1.4F-bin.jar${PATHSEP}${CLASSPATH}"
export CLASSPATH

# You can use `java' or `jre -classpath "$CLASSPATH"' below
# but these have to be in your PATH
exec java -mx64000000 at.dms.kjc.Main "$@"
