Code

f5e0ecef373c439c83928e22ab1fcb86c0b17bd7
[nagiosplug.git] / tools / distclean
1 #!/bin/sh
3 # This script cleans up all auto*-generated files. If Makefiles are present
4 # it will run 'make distclean' first.
5 #
6 # Please run this script from the top-level directory.
8 if [ ! -f tools/distclean ]; then
9   echo "Please run this script from the top-level directory of Nagios-plugins."
10   exit 1
11 fi
13 if [ -f Makefile ]; then
14   echo "$0: Makefile present. Cleaning up with 'make distclean'..."
15   make -i distclean
16   if [ $? -ne 0 ]; then
17     echo "Uh-oh! Make distclean failed."
18     exit 1
19   fi
20 fi
22 echo "$0: Removing auto* files..."
23 rm -rf autom4te.cache
24 find . -type f -name Makefile.in -print| xargs rm -f
25 rm -f aclocal.m4 compile config.guess config.h.in config.sub configure depcomp
26 rm -f m4/Makefile.am
28 echo "$0: Removing miscelanious files..."
29 rm -f po/*.gmo po/stamp-po
30 rm -f lib/tests/*.Po
31 rm -f doc/developer-guidelines.html
32 rm -f INSTALL install-sh missing
33 rm -f plugins/t/check_nagios.nagios?.status.???.tmp
35 echo "$0: Cleanup complete! Have a nice day..."