From 837b70cca87679131eab23577af1c677f42d815f Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Wed, 8 Dec 2021 12:27:49 +0100 Subject: [PATCH] ADD: support .drawio.svg images --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index e701a98..8412709 100644 --- a/Makefile +++ b/Makefile @@ -46,6 +46,11 @@ endif @dot -Tpdf $< -o $@ @touch $@.dep +%.svg: %.drawio.svg + @echo "**** Renaming drawio 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