From ff7baa77ec1f3ae92000d895ac0f1608d16a834d Mon Sep 17 00:00:00 2001 From: Dominik Meyer Date: Fri, 6 Sep 2024 08:37:47 +0200 Subject: [PATCH] feat: support plantuml files --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index d197a93..c9e1314 100644 --- a/Makefile +++ b/Makefile @@ -41,6 +41,11 @@ endif .SECONDARY: .latexmkrc .PHONY: clean watermark IEEE base +%.svg: %.plantuml + @echo "**** Generating $@ from plantuml file $< ****" + @plantuml -tsvg $< + @touch $@.dep + %.pdf: %.image.tex @echo "**** Generating $@ from tex file $< ****" @lualatex -output-directory=`dirname $<` $< >/dev/null