aboutsummaryrefslogtreecommitdiff
blob: b9c0eb21c55dd5607f2f09a54634f4638d644309 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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