Files
android_development/ndk/build/tools/cleanup-apps.sh
David 'Digit' Turner 93369c2470 Add the 'hello-neon' sample app to demonstrate cpufeatures and ARM Neon usage.
+ Add a small cleanup script (build/tools/cleanup-apps.sh)
+ Minor formatting of hello-gl2 sample.
2010-02-12 16:26:31 -08:00

13 lines
375 B
Bash
Executable File

#!/bin/sh
#
# This is used to cleanup the project directories before making a commit or
# a clean release. This will get rid of auto-generated files in the
# apps/<name>/project directories.
#
for projectPath in `find apps/*/project` ; do
rm -rf $projectPath/bin
rm -rf $projectPath/gen
rm -f $projectPath/build.xml
rm -f $projectPath/local.properties
done