[Nagiosplug-checkins] nagiosplug/tools distclean, NONE, 1.1 README, 1.1, 1.2
Thomas Guyot
dermoth at users.sourceforge.net
Thu Jan 4 12:18:43 CET 2007
Update of /cvsroot/nagiosplug/nagiosplug/tools
In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv30841/tools
Modified Files:
README
Added Files:
distclean
Log Message:
Adding my distclean script
Index: README
===================================================================
RCS file: /cvsroot/nagiosplug/nagiosplug/tools/README,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- README 2 May 2002 16:22:13 -0000 1.1
+++ README 4 Jan 2007 11:18:41 -0000 1.2
@@ -6,3 +6,4 @@
2. tango -
3. mini_epn/p1.pl - used to test perl plugins for functionality under embedded
perl
+4. distclean - used to clean the sources leaving only original CVS files
--- NEW FILE: distclean ---
#!/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..."
More information about the Commits
mailing list