summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorscoder <none@none>2008-03-03 19:42:05 +0100
committerscoder <none@none>2008-03-03 19:42:05 +0100
commita21609f88ec828c9862a62a2aba834931ccd3e4a (patch)
treefea7f02c22103c851d6958839e0710f8600cc384 /Makefile
parent705f970079e3fd1b0ef81d7426bb85b82cd2a324 (diff)
downloadpython-lxml-a21609f88ec828c9862a62a2aba834931ccd3e4a.tar.gz
[svn r3387] r3699@delle: sbehnel | 2008-03-03 12:01:18 +0100
docclean target in Makefile --HG-- branch : trunk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 47f7a991..a0fe40a6 100644
--- a/Makefile
+++ b/Makefile
@@ -41,7 +41,6 @@ ftest_inplace: inplace
$(PYTHON) test.py -f $(TESTFLAGS) $(TESTOPTS)
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`" ] \
@@ -65,7 +64,11 @@ clean:
find . \( -name '*.o' -o -name '*.so' -o -name '*.py[cod]' -o -name '*.dll' \) -exec rm -f {} \;
rm -rf build
-realclean: clean
+docclean:
+ rm -f doc/html/*.html
+ rm -fr doc/html/api
+
+realclean: clean docclean
find . -name '*.c' -exec rm -f {} \;
rm -f TAGS
$(PYTHON) setup.py clean -a