From 9993ac4fc9160d04a888f59eb6666b1021fdd74b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maximilian=20Ke=C3=9Fler?= Date: Sun, 30 Jan 2022 21:52:13 +0100 Subject: [PATCH] make doc building a phony target --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ff650f7..4352a94 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,3 @@ -.PHONY: build BUILD_FLAGS=--recursive --git-version --pytex-version --license --author "Maximilian Keßler" --pytex-info-text --extra-header ".build/header_info.txt" --name "prepend-author" --clean-old-files BUILD_DIRS= --source-dir src --build-dir build @@ -35,3 +34,5 @@ ci-build: doc: @-rm -r build/documentation $(MAKE) -C doc $(MAKECMDGOALS) + +.PHONY: build doc