93e5acaedaf6c9b50ae20615520840b50e3a8240
[feisty_meow.git] / scripts / generator / minimize_feisty_meow.sh
1 #!/bin/bash
2
3 # cleans up the generated files that most people don't use.
4 # this includes some static libraries and all of the tests, as well as
5 # the install bundles.
6
7 echo "Cleaning up feisty meow generated files..."
8
9 pushd $GENERATED_STORE
10
11 \rm -rf logs clam_tmp temporaries/*
12
13 pushd runtime
14
15 \rm -rf install/*
16
17 pushd binaries
18
19 \rm -rf *.a *.library test_*
20
21 popd
22 popd
23 popd
24
25 echo "Finished with feisty meow generated file cleaning."
26