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 10if test "$1" = fromscratch; then 11 12 # Brought in by explicit copy. 13 rm -rf admin 14 15fi 16 17# Brought in by autopoint. 18rm -f ABOUT-NLS 19rm -f m4/gettext.m4 20rm -f m4/host-cpu-c-abi.m4 21rm -f m4/iconv.m4 22rm -f m4/intlmacosx.m4 23rm -f m4/lib-ld.m4 24rm -f m4/lib-link.m4 25rm -f m4/lib-prefix.m4 26rm -f m4/nls.m4 27rm -f m4/po.m4 28rm -f m4/progtest.m4 29rm -f po/Makefile.in.in 30rm -f po/remove-potcdate.sin 31rm -f admin/config.rpath 32 33# Generated through admin/cvs.sh. 34 rm -f acinclude.m4 35 rm -f subdirs configure.files 36 rm -f configure.in 37 # Generated by aclocal. 38 rm -f aclocal.m4 39 # Generated by autoconf. 40 rm -f configure 41 rm -f config.h.in stamp-h.in 42 rm -f Makefile.in m4/Makefile.in 43 44# Generated. 45rm -f po/Makefile.in 46rm -f po/*.pot 47rm -f po/stamp-po 48rm -f po/*.gmo 49