summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJulien Jehannet <julien.jehannet@logilab.fr>2010-03-23 11:15:50 +0100
committerJulien Jehannet <julien.jehannet@logilab.fr>2010-03-23 11:15:50 +0100
commit3bc9e538dbd479f051c1481134bd3fe18f59842e (patch)
treeb943a4ac199cebd3c85209d6bf2f2e90d6486196 /doc
parentb73d14a2863d191962a5d2dccb87377c99581d06 (diff)
downloadlogilab-common-3bc9e538dbd479f051c1481134bd3fe18f59842e.tar.gz
[D] doc: start removal of epydoc support
- redirect epydoc warnings to /dev/null - make epydoc invocation non-blocking if error
Diffstat (limited to 'doc')
-rw-r--r--doc/makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/doc/makefile b/doc/makefile
index 2484e55..02f5d54 100644
--- a/doc/makefile
+++ b/doc/makefile
@@ -1,9 +1,8 @@
all: epydoc
epydoc:
- #epydoc -o apidoc --html -v --graph all --no-private --exclude="__pkginfo__" --exclude="setup" -n "Logilab's common library" ../
- mkdir apidoc
- epydoc -o apidoc --html -v --no-private --exclude="__pkginfo__" --exclude="setup" -n "Logilab's common library" $(shell dirname $(CURDIR))/build/lib/logilab/common
+ mkdir -p apidoc
+ -epydoc --parse-only -o apidoc --html -v --no-private --exclude='test' --exclude="__pkginfo__" --exclude="setup" -n "Logilab's common library" $(shell dirname $(CURDIR))/build/lib/logilab/common >/dev/null
clean:
rm -rf apidoc