version: bugfix changed to revision
[rofl0r-kripto.git] / clean.sh
blob694fb70f46f7d9f48415180acfac6feaa8859b58
1 #!/bin/sh
3 find . -name '*.o' -type f -exec rm -f {} \;
4 find . -name '*.a' -type f -exec rm -f {} \;
5 find . -name '*.so' -type f -exec rm -f {} \;
6 find . -name '*.dll' -type f -exec rm -f {} \;
8 # correct permissions
9 find . -type f -exec chmod 644 {} \;
10 find . -type d -exec chmod 755 {} \;
11 find . -name '*.sh' -exec chmod 755 {} \;