summaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2017-08-02 15:27:28 -0300
committerGuido Günther <agx@sigxcpu.org>2017-08-02 15:27:28 -0300
commit889cf65e79d0c8b891eca5ea4f4b3051f1af9f54 (patch)
tree0f905bc30609459631ae8284d2590469ce58f516 /Makefile
parentdf7f0289851ac6c9cb106e5dbd62dc3fbbf113aa (diff)
Use pydoctor to generate apidocs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 5ac780c1..80d116ff 100644
--- a/Makefile
+++ b/Makefile
@@ -21,9 +21,10 @@ syntax-check:
docs:
make -C docs
+ make apidocs
apidocs:
mkdir -p build
- epydoc -v --config=setup.cfg
+ pydoctor -v --config=.pydoctor.cfg
.PHONY: docs