[Python-3000-checkins] r57689 - python/branches/py3k/Makefile.pre.in

guido.van.rossum python-3000-checkins at python.org
Thu Aug 30 01:48:29 CEST 2007


Author: guido.van.rossum
Date: Thu Aug 30 01:48:29 2007
New Revision: 57689

Modified:
   python/branches/py3k/Makefile.pre.in
Log:
When clobbering, also clean the docs.


Modified: python/branches/py3k/Makefile.pre.in
==============================================================================
--- python/branches/py3k/Makefile.pre.in	(original)
+++ python/branches/py3k/Makefile.pre.in	Thu Aug 30 01:48:29 2007
@@ -1031,13 +1031,17 @@
 	-rm -f *.txt
 	-rm -f gb-18030-2000.xml
 
+docclean:
+	-rm -rf Doc/build
+	-rm -rf Doc/tools/sphinx Doc/tools/pygments Doc/tools/docutils
+
 clean: pycremoval
 	find . -name '*.o' -exec rm -f {} ';'
 	find . -name '*.s[ol]' -exec rm -f {} ';'
 	find $(srcdir)/build -name 'fficonfig.h' -exec rm -f {} ';' || true
 	find $(srcdir)/build -name 'fficonfig.py' -exec rm -f {} ';' || true
 
-clobber: clean rmtestturds
+clobber: clean rmtestturds docclean
 	-rm -f $(BUILDPYTHON) $(PGEN) $(LIBRARY) $(LDLIBRARY) $(DLLLIBRARY) \
 		tags TAGS \
 		config.cache config.log pyconfig.h Modules/config.c


More information about the Python-3000-checkins mailing list