#!/bin/sh
#
# Ganymede build script
#
# Release: $Name: userKit_103 $
# Version: $Revision: 1.3 $
# Date: $Date: 2000/12/03 11:27:11 $
#
############################################################

currentdir=`pwd`

# Change to the directory where this build script is

prog=$0
builddir=`echo $prog|sed 's%/[^/][^/]*$%%'`
test "x$builddir" = "x$builddir" && builddir=.
cd $builddir

# Load configuration information

. ./config.sh

# And do the build

echo "Compiling $COMPNAME"

CLASSPATH=$CLASSDIR:$CLASSPATH; export CLASSPATH
$JAVAC -J-mx128m -deprecation -d classes *.java

# Return to our last directory

cd $currentdir

echo "Done compiling $COMPNAME"

