#!/bin/sh
#
# jc - shorthand to call java compiler
# with appropriate CLASSPATH and arguments

cd ../../../..
CLASSPATH=`pwd`/classes:`pwd`/javasrc:"$CLASSPATH"
export CLASSPATH

for f
do
  set -x
  javac -d classes javasrc/vrml/external/field/$f
done
