[Zope3-checkins] CVS: Zope3 - Makefile:1.27
Godefroid Chapelle
gotcha@swing.be
Wed, 30 Apr 2003 10:56:11 -0400
Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv16998
Modified Files:
Makefile
Log Message:
dll files were not removed by make clean on Cygwin
=== Zope3/Makefile 1.26 => 1.27 ===
--- Zope3/Makefile:1.26 Tue Apr 29 09:56:31 2003
+++ Zope3/Makefile Wed Apr 30 10:56:10 2003
@@ -34,7 +34,7 @@
$(PYTHON) z3.py
clean:
- find . -name '*.o' -o -name '*.so' -o -name '*.py[co]' | xargs rm -f
+ find . -name '*.o' -o -name '*.so' -o -name '*.py[co]' -o -name '*.dll' -exec rm {} \;
rm -rf build
realclean: clean