8 lines
263 B
Bash
Executable File
8 lines
263 B
Bash
Executable File
find . -name \*.gcno -o -name \*.gcda | xargs rm -f
|
|
find . -name \*.lo -o -name \*.o | xargs rm -f
|
|
find . -name \*.la -o -name \*.a | xargs rm -f
|
|
find . -name \*.so | xargs rm -f
|
|
find . -name .libs -a -type d|xargs rm -rf
|
|
rm -f libphp.la modules/* libs/*
|
|
|