musikcube/script/clean-nix.sh
2020-10-01 20:01:20 -07:00

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