1*946379e7Schristos#!/bin/sh 2*946379e7Schristos# Example for use of GNU gettext. 3*946379e7Schristos# Copyright (C) 2003, 2005-2006 Free Software Foundation, Inc. 4*946379e7Schristos# This file is in the public domain. 5*946379e7Schristos# 6*946379e7Schristos# Script for cleaning all autogenerated files. 7*946379e7Schristos 8*946379e7Schristostest ! -f Makefile || make distclean 9*946379e7Schristos 10*946379e7Schristos# Brought in by explicit copy. 11*946379e7Schristosrm -f m4/nls.m4 12*946379e7Schristosrm -f m4/po.m4 13*946379e7Schristosrm -f m4/progtest.m4 14*946379e7Schristosrm -f po/remove-potcdate.sin 15*946379e7Schristos 16*946379e7Schristos# Generated by aclocal. 17*946379e7Schristosrm -f aclocal.m4 18*946379e7Schristos 19*946379e7Schristos# Generated by autoconf. 20*946379e7Schristosrm -f configure 21*946379e7Schristos 22*946379e7Schristos# Generated or brought in by automake. 23*946379e7Schristosrm -f Makefile.in 24*946379e7Schristosrm -f m4/Makefile.in 25*946379e7Schristosrm -f po/Makefile.in 26*946379e7Schristosrm -f install-sh 27*946379e7Schristosrm -f missing 28*946379e7Schristosrm -f po/*.pot 29*946379e7Schristosrm -f po/stamp-po 30*946379e7Schristosrm -f po/*.gmo 31