[Epydoc-commits] SF.net SVN: epydoc: [1363] trunk/epydoc/Makefile
Brought to you by:
edloper
From: <ed...@us...> - 2006-09-06 23:47:24
|
Revision: 1363 http://svn.sourceforge.net/epydoc/?rev=1363&view=rev Author: edloper Date: 2006-09-06 16:47:17 -0700 (Wed, 06 Sep 2006) Log Message: ----------- - When documenting the stdlib, ignore /idlelib/ - Clean up old profile.out file before making profile.out; and clean up hotshot.out when we're done. Modified Paths: -------------- trunk/epydoc/Makefile Modified: trunk/epydoc/Makefile =================================================================== --- trunk/epydoc/Makefile 2006-09-06 23:46:28 UTC (rev 1362) +++ trunk/epydoc/Makefile 2006-09-06 23:47:17 UTC (rev 1363) @@ -206,11 +206,12 @@ > doc/epydocgui-man.html profile.out: $(PY_SRCFILES) + rm -f profile.out $(EPYDOC) -o profile.tmp --name epydoc --css white --debug \ --url http://epydoc.sourceforge.net --profile-epydoc \ --inheritance=listed --navlink "epydoc $(VERSION)"\ --docformat plaintext -v --graph all $(PY_SRC) - rm -rf profile.tmp + rm -rf profile.tmp hotshot.out ##////////////////////////////////////////////////////////////////////// ## Standard Library docs @@ -221,6 +222,7 @@ SLFILES = $(shell find /usr/lib/$(PYTHON)/ -name '*.py' -o -name '*.so' \ |grep -v "/$(PYTHON)/config/" \ |grep -v "/$(PYTHON)/lib-old/" \ + |grep -v "/$(PYTHON)/idlelib/" \ |grep -v "/$(PYTHON)/site-packages/" \ |grep -v "/$(PYTHON)/__phello__\.foo\.py" ) PY_PRINT_BUILTINS = "import sys; print ' '.join(sys.builtin_module_names)" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |