You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
425 B
25 lines
425 B
#!/bin/sh
|
|
# Script for cleaning all autogenerated files.
|
|
|
|
test ! -f Makefile || make distclean
|
|
|
|
# Generated by aclocal.
|
|
rm -f aclocal.m4
|
|
|
|
# Generated by autoconf.
|
|
rm -f configure
|
|
|
|
# Generated by autoheader
|
|
rm -f config.h.in
|
|
|
|
# Generated or brought in by automake.
|
|
rm -f Makefile.in
|
|
rm -f src/Makefile.in
|
|
rm -f include/Makefile.in
|
|
rm -f INSTALL
|
|
rm -f COPYING
|
|
|
|
# Generated by all in config
|
|
rm -rf config
|
|
|
|
rm -rf autom4te.cache
|