diff options
Diffstat (limited to 'gentools/build')
| -rwxr-xr-x | gentools/build | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/gentools/build b/gentools/build new file mode 100755 index 0000000000..614f600152 --- /dev/null +++ b/gentools/build @@ -0,0 +1,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 org/apache/qpid/gentools/*.java +echo "Done. Try it out..." +java org/apache/qpid/gentools/Main +echo "--------- Building gentools completed ----------" +cd .. |
