From 12b097e24fcbdd9bc4fade5beb1adbb7aee57164 Mon Sep 17 00:00:00 2001 From: relikd Date: Thu, 22 Dec 2022 01:22:11 +0100 Subject: [PATCH] chore: extend Makefile --- Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 1bd3def..79fc99e 100644 --- a/Makefile +++ b/Makefile @@ -34,6 +34,7 @@ dist: clean: @echo 'Cleaning output' + @cd '$(PROJDIR)' && rm -rf "$$(lektor project-info --output-path)/.lektor/buildstate"* @cd '$(PROJDIR)' && lektor clean --yes -v plugins: @@ -47,6 +48,9 @@ clean-all: clean plugins server: @cd '$(PROJDIR)' && lektor server # -f ENABLE_PDF_EXPORT +server-v: + @cd '$(PROJDIR)' && lektor server -v + build: dist @cd '$(PROJDIR)' && \ lektor build --output-path ../bin --buildstate-path ../build-state -f ENABLE_PDF_EXPORT