Code

tools/distclean: use git-clean when possible
[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 # First try git-clean, removing all ignored files will be perfect...
14 if [ -d ".git" ]; then
15   echo "$0: Running 'git clean -fdX', this will remove all files ignored by git..."
16         git clean -fdX
17         if [ "$?" -eq "0" ]; then
18                 echo "$0: Cleanup complete! Have a nice day..."
19                 exit 0
20         fi
21         echo "$0: git-clean error, failing back to legacy cleanup!"
22 fi
24 # If we get here, then git-clean did not run or failed. Using the legacy method...
25 if [ -f Makefile ]; then
26   echo "$0: Makefile present. Cleaning up with 'make distclean'..."
27   make -i distclean
28   if [ $? -ne 0 ]; then
29     echo "Uh-oh! Make distclean failed."
30     exit 1
31   fi
32 fi
34 echo "$0: Removing auto* files..."
35 rm -rf autom4te.cache
36 find . -type f -name Makefile.in -print| xargs rm -f
37 rm -f aclocal.m4 compile config.guess config.h.in config.sub configure depcomp
38 rm -f m4/Makefile.am
40 echo "$0: Removing miscelanious files..."
41 rm -f po/*.gmo po/stamp-po
42 rm -f lib/tests/*.Po
43 rm -f doc/developer-guidelines.html
44 rm -f INSTALL install-sh missing
45 rm -f plugins/t/check_nagios.nagios?.status.???.tmp
47 echo "$0: Cleanup complete! Have a nice day..."