simplifying
[feisty_meow.git] / examples / custom_overrides / fred / build_cak0l.sh
index e55690dbc3135922ab85f1a22c0824ceec55eba8..1dc3f197506b5ecc8cc4f1e9f6afba68508eda8f 100644 (file)
@@ -1,5 +1,17 @@
 #!/bin/bash
-pushd ~/xsede/code/cak0l/trunk
-ant -Dbuild.targetArch=64 build
-popd
+
+function build_cak0l()
+{
+  pushd ~/xsede/code/cak0l/trunk
+  ant -Dbuild.targetArch=64 build
+  popd
+}
+
+function rebuild_cak0l()
+{
+  pushd ~/xsede/code/cak0l/trunk
+  ant clean
+  popd
+  build_cak0l
+}