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 # Generated by aclocal. 17 rm -f aclocal.m4 18 19 # Generated by autoconf. 20 rm -f configure 21 22 # Generated or brought in by automake. 23 rm -f Makefile.in 24 rm -f m4/Makefile.in 25 rm -f po/Makefile.in 26 rm -f install-sh 27 rm -f missing 28 rm -f config.guess 29 rm -f config.sub 30 rm -f po/*.pot 31 rm -f po/stamp-po 32 rm -f po/*.qm 33