blob: ad9827b113a7fa53ccc49a7e725b369f5cfba13d [file] [log] [blame]
#!/bin/bash
cd src
echo "--------- Building gentools ----------"
echo "Clearing out old build files..."
for f in org/apache/qpid/gentools/*.class; do
if [ -e $f ]; then
rm $f
fi
done
echo "Compiling..."
javac org/apache/qpid/gentools/*.java
echo "Done. Try it out..."
java org.apache.qpid.gentools.Main
echo "--------- Building gentools completed ----------"
cd ..