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 m4/lib-ld.m4 15 rm -f m4/lib-link.m4 16 rm -f m4/lib-prefix.m4 17 rm -f config.rpath 18 rm -f po/remove-potcdate.sin 19 20 # Generated by aclocal. 21 rm -f aclocal.m4 22 23 # Generated by autoconf. 24 rm -f configure 25 26 # Generated or brought in by automake. 27 rm -f Makefile.in 28 rm -f m4/Makefile.in 29 rm -f po/Makefile.in 30 rm -f install-sh 31 rm -f missing 32 rm -f config.guess 33 rm -f config.sub 34 rm -f po/*.pot 35 rm -f po/stamp-po 36 rm -f po/*.gmo 37