X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=examples%2Fcustom_overrides%2Ffred%2Fbuild_cak0l.sh;h=1dc3f197506b5ecc8cc4f1e9f6afba68508eda8f;hb=de97aa518dcc0fe712217532482eaa0fdf50bdb9;hp=e55690dbc3135922ab85f1a22c0824ceec55eba8;hpb=f956c8fb06f98b01dedf64ae56a4767645721eef;p=feisty_meow.git diff --git a/examples/custom_overrides/fred/build_cak0l.sh b/examples/custom_overrides/fred/build_cak0l.sh index e55690db..1dc3f197 100644 --- a/examples/custom_overrides/fred/build_cak0l.sh +++ b/examples/custom_overrides/fred/build_cak0l.sh @@ -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 +}