mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-02-20 00:10:09 -05:00
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1818 f882894a-f735-0410-b71e-b25c423dba1c
36 lines
1 KiB
Bash
Executable file
36 lines
1 KiB
Bash
Executable file
#!/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 -print| xargs 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 lib/tests/*.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..."
|