aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/clean.sh')
-rwxr-xr-xscripts/clean.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/scripts/clean.sh b/scripts/clean.sh
deleted file mode 100755
index b9c0eb2..0000000
--- a/scripts/clean.sh
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/bash
-
-if [[ -f Makefile ]] ; then
- make distclean
-fi
-
-for f in \
- `find . -name Makefile.in -o -name Makefile` \
- `find . -name .libs -o -name .deps -type d` \
- `find . -name '*.o' -o -name '*.la' -o -name '*.lo' -o -name '*.loT'` \
- aclocal.m4* autom4te.cache \
- configure config.* \
- depcomp install-sh ltmain.sh missing mkinstalldirs libtool \
- compile stamp-* \
- src/sandbox src/libsandbox.map src/symbols.h;
-do
- rm -rf $f
-done