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 8test ! -f Makefile || make distclean 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 csharpcomp.sh.in 21rm -f csharpexec.sh.in 22 23# Generated by aclocal. 24rm -f aclocal.m4 25 26# Generated by autoconf. 27rm -f configure 28 29# Generated or brought in by automake. 30rm -f Makefile.in 31rm -f m4/Makefile.in 32rm -f po/Makefile.in 33rm -f install-sh 34rm -f missing 35rm -f po/*.pot 36rm -f po/stamp-po 37for f in po/*/*.resources.dll; do 38 rm -f $f 39 rmdir `echo $f | sed -e 's,/[^/]*$,,'` 40done 41