2017-11-08 09:05:56 +08:00
|
|
|
#
|
|
|
|
# Top level makefile for things not covered by cmake
|
|
|
|
#
|
|
|
|
|
2018-07-10 19:31:18 +08:00
|
|
|
BUILDDIR ?= doc/_build
|
2017-11-08 09:05:56 +08:00
|
|
|
|
|
|
|
# Documentation targets
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
htmldocs:
|
2018-07-10 19:31:18 +08:00
|
|
|
mkdir -p ${BUILDDIR} && cmake -G"Unix Makefiles" -B${BUILDDIR} -Hdoc/ && make -s -C ${BUILDDIR} htmldocs
|