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