1#!/bin/sh 2# This file is in the public domain. 3# 4# Script for cleaning all autogenerated files. 5 6test ! -f Makefile || make distclean 7rm -rf autom4te.cache 8 9# Explicitly copied. 10rm -f build-aux/config.rpath 11 12# Generated by aclocal. 13rm -f aclocal.m4 14 15# Generated by autoconf. 16rm -f configure 17 18# Generated or brought in by automake. 19rm -f Makefile.in 20rm -f m4/Makefile.in 21rm -f build-aux/compile 22rm -f build-aux/install-sh 23rm -f build-aux/missing 24rm -f build-aux/config.guess 25rm -f build-aux/config.sub 26