diff options
author | Sven Gothel <[email protected]> | 2010-04-29 17:42:21 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2010-04-29 17:42:21 +0200 |
commit | 9bdcb54bc88788c1c3bea1bb76955f81ed3db3f7 (patch) | |
tree | 70938e455264ae212fc461345f7da83e7b5e75db /make/scripts/jogl-rm-builds.sh | |
parent | 14256647c8954bb8d6d2afa88927e75783bc912b (diff) |
cleanup scripts ; updated win32 and win64 scripts with my environment
Diffstat (limited to 'make/scripts/jogl-rm-builds.sh')
-rwxr-xr-x | make/scripts/jogl-rm-builds.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/make/scripts/jogl-rm-builds.sh b/make/scripts/jogl-rm-builds.sh new file mode 100755 index 000000000..f014a3e9c --- /dev/null +++ b/make/scripts/jogl-rm-builds.sh @@ -0,0 +1,16 @@ +#! /bin/sh + +jogamproot=$1 +shift + +builddir=$1 +shift + +if [ -z "$jogamproot" -o -z "$builddir" ] ; then + echo Usage $0 jogamp_root builddir + echo e.g. $0 JOGL build-win32 +fi + + +rm -rf $jogamproot/gluegen/$builddir +rm -rf $jogamproot/jogl/$builddir |