[Lxml-checkins] r46180 - lxml/branch/lxml-1.3
scoder at codespeak.net
scoder at codespeak.net
Thu Aug 30 11:17:04 CEST 2007
Author: scoder
Date: Thu Aug 30 11:17:02 2007
New Revision: 46180
Modified:
lxml/branch/lxml-1.3/Makefile
Log:
delete API docs only when regenerating them
Modified: lxml/branch/lxml-1.3/Makefile
==============================================================================
--- lxml/branch/lxml-1.3/Makefile (original)
+++ lxml/branch/lxml-1.3/Makefile Thu Aug 30 11:17:02 2007
@@ -36,6 +36,7 @@
html: inplace
mkdir -p doc/html
PYTHONPATH=src $(PYTHON) doc/mkhtml.py doc/html . `cat version.txt`
+ rm -fr doc/html/api
[ -x "`which epydoc`" ] \
&& (cd src && PYTHONPATH=. epydoc -o ../doc/html/api --name lxml --url http://codespeak.net/lxml/ lxml/) \
|| (echo "not generating epydoc API documentation")
@@ -51,7 +52,7 @@
clean:
find . \( -name '*.o' -o -name '*.c' -o -name '*.so' -o -name '*.py[cod]' -o -name '*.dll' \) -exec rm -f {} \;
- rm -rf build doc/html/api
+ rm -rf build
realclean: clean
rm -f TAGS
More information about the lxml-checkins
mailing list