XCBC mac added
[rofl0r-kripto.git] / clean.sh
blobf81d507857e9bc3acb87224f79e4cf4fd5676425
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 '*.so.*' -type f -exec rm -f {} \;
8 # correct permissions
9 find . -type f -exec chmod 0644 {} \;
10 find . -type d -exec chmod 0755 {} \;
11 find . -name '*.sh' -exec chmod +x {} \;