2005-10-17 18:52:43 +00:00
|
|
|
#!/bin/sh -xu
|
|
|
|
|
2006-10-15 19:38:02 +00:00
|
|
|
[ -f Makefile ] && make distclean
|
2012-03-31 22:17:30 -04:00
|
|
|
|
2005-10-17 18:52:43 +00:00
|
|
|
rm -rf autom4te.cache
|
2012-03-31 22:17:30 -04:00
|
|
|
rm -f config.h.in config.h
|
2009-05-18 22:59:54 -05:00
|
|
|
rm -f config.status
|
|
|
|
rm -f configure
|
|
|
|
rm -f stamp*
|
|
|
|
rm -f aclocal.m4
|
|
|
|
rm -f compile
|
|
|
|
rm -f libtool
|
2006-06-28 05:37:15 +00:00
|
|
|
|
2010-05-30 14:41:59 +10:00
|
|
|
rm -f test/pacman/*.pyc
|
2009-05-18 22:59:54 -05:00
|
|
|
rm -f doc/html/*.html
|
|
|
|
rm -f doc/man3/*.3
|
2007-03-06 06:38:20 +00: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 {} +
|