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# Generated by aclocal.
17rm -f aclocal.m4
18
19# Generated by autoconf.
20rm -f configure
21
22# Generated or brought in by automake.
23rm -f Makefile.in
24rm -f m4/Makefile.in
25rm -f po/Makefile.in
26rm -f install-sh
27rm -f missing
28rm -f po/*.pot
29rm -f po/stamp-po
30rm -f po/*.gmo
31