#!/bin/sh
#
# Ganymede Password Clients Build Script
#
# Release: $Name: ganymede_107 $
# Version: $Revision: 1.5 $
# Date: $Date: 1999/04/06 20:57:00 $
#
###################################################

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

echo "Compiling $COMPNAME"

CLASSPATH=$CLASSDIR:$CLASSPATH; export CLASSPATH

$JAVAC -deprecation -d $TARGETDIR *.java

echo "Creating Jar file"

cd $TARGETDIR

$JAVADIR/jar -cf $currentdir/../../jars/password.jar arlut

cd $currentdir

echo "Done"
