Cleaned up some 'make clobber' issues in root Makefile

This commit is contained in:
Don BURNS
2001-10-14 04:50:04 +00:00
parent c6f11afbf6
commit e8edf1f6e6

View File

@@ -82,8 +82,8 @@ help :
clean : $(MAKE_PREP)
for f in $(DIRS) ; do cd $$f; $(MAKE) clean; cd ..; done
find lib -type f -exec rm {} \;
rm -f bin/*
rm -f `find lib -type f | grep -v .README`
rm -f `ls bin/* | grep -v CVS`
clobber : $(MAKE_PREP) clean
for f in $(DIRS) ; do cd $$f; $(MAKE) clobber; cd ..; done