1 #!/bin/sh 2 # Example for use of GNU gettext. 3 # Copyright (C) 2003, 2005-2006 Free Software Foundation, Inc. 4 # This file is in the public domain. 5 # 6 # Script for cleaning all autogenerated files. 7 8 test ! -f Makefile || make distclean 9 10 # Brought in by explicit copy. 11 rm -f m4/nls.m4 12 rm -f m4/po.m4 13 rm -f m4/progtest.m4 14 rm -f po/remove-potcdate.sin 15 16 # Brought in by explicit copy. 17 rm -f m4/csharpcomp.m4 18 rm -f m4/csharpexec.m4 19 rm -f m4/csharpexec-test.exe 20 rm -f csharpcomp.sh.in 21 rm -f csharpexec.sh.in 22 23 # Generated by aclocal. 24 rm -f aclocal.m4 25 26 # Generated by autoconf. 27 rm -f configure 28 29 # Generated or brought in by automake. 30 rm -f Makefile.in 31 rm -f m4/Makefile.in 32 rm -f po/Makefile.in 33 rm -f install-sh 34 rm -f missing 35 rm -f po/*.pot 36 rm -f po/stamp-po 37 for f in po/*/*.resources.dll; do 38 rm -f $f 39 rmdir `echo $f | sed -e 's,/[^/]*$,,'` 40 done 41