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