adopted two new variables
[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 source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh"
8
9 sep
10 echo "Cleaning up feisty meow generated files..."
11
12 pushd $FEISTY_MEOW_GENERATED_STORE
13
14 \rm -rf logs clam_tmp temporaries/*
15
16 pushd runtime
17
18 \rm -rf install/*
19
20 pushd binaries
21
22 \rm -rf *.a *.library test_*
23
24 popd
25 popd
26 popd
27
28 echo "Finished with feisty meow generated file cleaning."
29 sep
30