From 0b1141ffa3925e2f8975b8aaa5882d9aa2192985 Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Thu, 8 Aug 2024 23:04:38 +0200 Subject: [PATCH] feat: support excalidraw files --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index c6fb5e0..d197a93 100644 --- a/Makefile +++ b/Makefile @@ -57,6 +57,11 @@ endif @cp $< $@ @touch $@.dep +%.svg: %.excalidraw.svg + @echo "**** Renaming excalidraw file $< *****" + @cp $< $@ + @touch $@.dep + %.pdf: %.svg @echo "**** Generating $@ from svg file $< ****" @if [ $(INKSCAPE_EXIST) != "0" ]; then echo "The inkscape tool required for converting svg --> pdf is missing. Please install it"; exit -1; fi