aboutsummaryrefslogtreecommitdiff
path: root/build/tools
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@google.com>2010-02-12 15:51:33 -0800
committerDavid 'Digit' Turner <digit@google.com>2010-02-12 16:26:31 -0800
commited849b513ab66a5e0d96981b2f1432d92839dc98 (patch)
treea1d0724158a3c9be8685818f12158e4f1da20afa /build/tools
parentdfca8b109ec799b4321cc4d2eb1f09b51c17520b (diff)
downloadndk-ed849b513ab66a5e0d96981b2f1432d92839dc98.tar.gz
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.
Diffstat (limited to 'build/tools')
-rwxr-xr-xbuild/tools/cleanup-apps.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/build/tools/cleanup-apps.sh b/build/tools/cleanup-apps.sh
new file mode 100755
index 000000000..21a0df013
--- /dev/null
+++ b/build/tools/cleanup-apps.sh
@@ -0,0 +1,12 @@
+#!/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