2P11/clear.sh

10 lines
235 B
Bash
Raw Normal View History

2015-05-02 23:00:30 +02:00
#!/bin/bash
path="$(dirname "$(readlink -f $0)")"
find "$path" -name "CMakeFiles" -exec rm -rf {} \;
find "$path" -name "CMakeCache.txt" -delete
find "$path" -name "cmake_install.cmake" -delete
find "$path" -name "Makefile" -delete