From 1d070f543d8192263e515416252183674f497fde Mon Sep 17 00:00:00 2001 From: Azondekon Date: Sat, 29 Apr 2023 11:56:45 -0400 Subject: [PATCH] Update Makefile --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 52f4bce..854c1d9 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,8 @@ docs: ## generate Sphinx HTML documentation, including API docs $(BROWSER) docs/_build/html/index.html pdfdocs: ## generate Sphinx PDF documentation, including API docs - cd docs && make latexpdf && cd .. + cd docs && make latexpdf -i + cp -r docs/_build/latex/pynssp.pdf docs servedocs: docs ## compile the docs watching for changes watchmedo shell-command -p '*.rst' -c '$(MAKE) -C docs html' -R -D .