mirror of
https://github.com/clangen/musikcube.git
synced 2024-11-19 11:10:52 +00:00
5 lines
145 B
Bash
5 lines
145 B
Bash
|
#!/bin/sh
|
||
|
make clean 2> /dev/null
|
||
|
rm -rf bin
|
||
|
find . -name CMakeCache.txt -delete
|
||
|
find . -name CMakeFiles -type d -exec rm -r "{}" \; 2> /dev/null
|