From 2a61a427a28dd879bb61bdee979bcc87051efe01 Mon Sep 17 00:00:00 2001 From: Nicolas Bock Date: Thu, 12 Sep 2024 15:01:58 -0600 Subject: [PATCH] Add docs target to build documentation Signed-off-by: Nicolas Bock --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/Makefile b/Makefile index bcf853d..558582f 100644 --- a/Makefile +++ b/Makefile @@ -85,3 +85,10 @@ install: build rm -rf build mkdir build cp athena-monitor athena-processor build/ + +.PHONY: docs +docs: + python3 -m venv venv + ./venv/bin/pip install --upgrade pip + ./venv/bin/pip install sphinx + . venv/bin/activate && make -C docs html