simplifying
[feisty_meow.git] / examples / custom_overrides / fred / build_cak0l.sh
1 #!/bin/bash
2
3 function build_cak0l()
4 {
5   pushd ~/xsede/code/cak0l/trunk
6   ant -Dbuild.targetArch=64 build
7   popd
8 }
9
10 function rebuild_cak0l()
11 {
12   pushd ~/xsede/code/cak0l/trunk
13   ant clean
14   popd
15   build_cak0l
16 }
17