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