2005-10-17 14:52:43 -04:00
|
|
|
#!/bin/sh -xu
|
|
|
|
|
2006-10-15 15:38:02 -04:00
|
|
|
[ -f Makefile ] && make distclean
|
2012-03-31 22:17:30 -04:00
|
|
|
|
2005-10-17 14:52:43 -04:00
|
|
|
rm -rf autom4te.cache
|
2012-03-31 22:17:30 -04:00
|
|
|
rm -f config.h.in config.h
|
2009-05-18 23:59:54 -04:00
|
|
|
rm -f config.status
|
|
|
|
rm -f configure
|
|
|
|
rm -f stamp*
|
|
|
|
rm -f aclocal.m4
|
|
|
|
rm -f compile
|
|
|
|
rm -f libtool
|
2006-06-28 01:37:15 -04:00
|
|
|
|
2010-05-30 00:41:59 -04:00
|
|
|
rm -f test/pacman/*.pyc
|
2009-05-18 23:59:54 -04:00
|
|
|
rm -f doc/html/*.html
|
|
|
|
rm -f doc/man3/*.3
|
2007-03-06 01:38:20 -05:00
|
|
|
|
2012-03-31 22:17:30 -04:00
|
|
|
find . \( -name 'Makefile' -o \
|
|
|
|
-name 'Makefile.in' -o \
|
|
|
|
-path '*/po/POTFILES' -o \
|
|
|
|
-path '*/po/stamp-po' -o \
|
|
|
|
-path '*/po/*.gmo' \) -exec rm -f {} +
|