we don't always want all the generated junk, which weighs in at like ~430 megs these days. this script winnows out the things most people will not need, once they've generated the binaries with the production process.
--- /dev/null
+#!/bin/bash
+
+# cleans up the generated files that most people don't use.
+# this includes some static libraries and all of the tests, as well as
+# the install bundles.
+
+echo "Cleaning up feisty meow generated files..."
+
+pushd $GENERATED_STORE
+
+\rm -rf logs clam_tmp temporaries/*
+
+pushd runtime
+
+\rm -rf install/*
+
+pushd binaries
+
+\rm -rf *.a *.library test_*
+
+popd
+popd
+popd
+
+echo "Finished with feisty meow generated file cleaning."
+