#! /bin/sh -

# someday I'm going to have to switch to using Ant for this, but I haven't
# time just now.  A (cygwin) bash script is good enough, anyway.  The simplest
# thing that could possibly work...

export CLASSPATH=

mkdir tmp
javac -deprecation -d tmp *.java
jar cf ../JNIPort.jar -C tmp org
rm -rf tmp
