[Zope3-checkins] CVS: Zope3 - Makefile:1.12
Guido van Rossum
guido@python.org
Thu, 27 Feb 2003 16:41:55 -0500
Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv29829
Modified Files:
Makefile
Log Message:
Don't remove TAGS as part of make clean; but do remove build as part
of it. Do remove TAGS as part of realclean.
=== Zope3/Makefile 1.11 => 1.12 ===
--- Zope3/Makefile:1.11 Fri Dec 27 14:34:44 2002
+++ Zope3/Makefile Thu Feb 27 16:41:55 2003
@@ -25,9 +25,10 @@
clean:
find . -name '*.o' -o -name '*.so' -o -name '*.py[co]' | xargs rm -f
- rm -f TAGS
+ rm -f build
realclean: clean
+ rm -f TAGS
$(PYTHON) setup.py clean -a
TAGS: