diff --git a/Makefile b/Makefile index a151173c6..c10fe1f7f 100644 --- a/Makefile +++ b/Makefile @@ -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