diff options
author | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-01-04 11:18:41 +0000 |
---|---|---|
committer | Thomas Guyot-Sionnest <dermoth@users.sourceforge.net> | 2007-01-04 11:18:41 +0000 |
commit | d2a434d4dba454df5b3295520a28eb28ed098e55 (patch) | |
tree | 252888adfb3262f4e66eff29b710e033d72f7142 /tools/distclean | |
parent | f4bb497d4e660ef7adc9f2bbda517359520ae3e8 (diff) | |
download | monitoring-plugins-d2a434d4dba454df5b3295520a28eb28ed098e55.tar.gz |
Adding my distclean script
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1558 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'tools/distclean')
-rwxr-xr-x | tools/distclean | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tools/distclean b/tools/distclean new file mode 100755 index 00000000..5b3388cd --- /dev/null +++ b/tools/distclean @@ -0,0 +1,35 @@ +#!/bin/sh + +# This script cleans up all auto*-generated files. If Makefiles are present +# it will run 'make distclean' first. +# +# Please run this script from the top-level directory. + +if [ ! -f tools/distclean ]; then + echo "Please run this script from the top-level directory of Nagios-plugins." + exit 1 +fi + +if [ -f Makefile ]; then + echo "$0: Makefile present. Cleaning up with 'make distclean'..." + make distclean + if [ $? -ne 0 ]; then + echo "Uh-oh! Make distclean failed." + echo "Please run './config.status' and try again." + exit 1 + fi +fi + +echo "$0: Removing auto* files..." +rm -rf autom4te.cache +find . -type f -name Makefile.in -print0| xargs -0 rm -f +rm -f aclocal.m4 compile config.guess config.h.in config.sub configure depcomp +rm -f m4/Makefile.am + +echo "$0: Removing miscelanious files..." +rm -f po/*.gmo po/stamp-po +rm -f doc/developer-guidelines.html +rm -f INSTALL install-sh missing +rm -f plugins/t/check_nagios.nagios?.status.???.tmp + +echo "$0: Cleanup complete! Have a nice day..." |