From 92ec92fc0a5430e9be01a4938560c00475f87fe0 2013-09-14 19:39:38 From: Dav Clark Date: 2013-09-14 19:39:38 Subject: [PATCH] Added a lightweight "core" Makefile entry `make core` now runs a lightweight doc build process that doesn't include the "api" target. The "html" target now just references "core" and "api". This patch is a candidate for backporting to 1.x. --- diff --git a/docs/Makefile b/docs/Makefile index c5d2df4..8267fd8 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -52,7 +52,9 @@ dist: html cp -al build/html . @echo "Build finished. Final docs are in html/" -html: api +html: core api + +core: mkdir -p build/html build/doctrees $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) build/html @echo