#!/bin/sh
#
# Ganymede build script
#
# Release: $Name: ganymede_107 $
# Version: $Revision: 1.1 $
# Date: $Date: 2000/01/26 04:32:12 $
#
############################################################

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 $TARGETDIR *.java

# Return to our last directory

cd $currentdir

echo "Done compiling $COMPNAME"
