From a27cbb3ae563cb3b1b3c14f6c0fcf3f222843793 Mon Sep 17 00:00:00 2001 From: Simon Vieille Date: Sun, 28 Nov 2021 22:29:01 +0100 Subject: [PATCH] update makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 2d5c77a..6abeda7 100644 --- a/Makefile +++ b/Makefile @@ -8,11 +8,11 @@ build-html: marp src/index.md --allow-local-files -o build/index.html clean: + test -f build/index.html && rm build/index.html || true test -f build/slides.pdf && rm build/slides.pdf || true test -f build/slides.pptx && rm build/slides.pptx || true - test -f build/index.html && rm build/index.html || true -build: build-pdf build-pptx build-html +build: build-html build-pdf build-pptx serve: marp --allow-local-files -w -s ./src