From 11c1377a9f38e336841abab96e5b33b8a7ffb621 Mon Sep 17 00:00:00 2001 From: Michael Currin <18750745+MichaelCurrin@users.noreply.github.com> Date: Sat, 17 Oct 2020 16:23:41 +0200 Subject: [PATCH] chore: Update Makefile --- Makefile | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 549b68d..bda26b0 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,16 @@ .PHONY: docs +h help: + @egrep '(^\S)|(^$$)|\s+@echo' Makefile + + install: pip install --upgrade pip pip install -r requirements.txt -b docs: - mkdocs build --strict -s docs-serve: +s serve: mkdocs serve --strict + +d docs: + mkdocs build --strict