Update 'make release' to remove all the .#filename files
the CVS leaves lying about...
 -Erik
diff --git a/Makefile b/Makefile
index e24193c..bdef05a 100644
--- a/Makefile
+++ b/Makefile
@@ -181,4 +181,9 @@
 				 -print		\
 		| xargs rm -f;			\
 						\
+	find busybox-$(VERSION)/ -type f	\
+				 -name .\#*	\
+				 -print		\
+		| xargs rm -f;			\
+						\
 	tar -cvzf busybox-$(VERSION).tar.gz busybox-$(VERSION)/;