summaryrefslogtreecommitdiff
path: root/gentools/build
blob: 4114babe724e1bf94ef4ed134a550b8e66e26e3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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 -source=1.5 -target=1.5 org/apache/qpid/gentools/*.java
echo "Done. Try it out..."
java org.apache.qpid.gentools.Main
echo "--------- Building gentools completed ----------"
cd ..