diff --git a/Makefile b/Makefile index c9e1314..2f70de2 100644 --- a/Makefile +++ b/Makefile @@ -43,7 +43,7 @@ endif %.svg: %.plantuml @echo "**** Generating $@ from plantuml file $< ****" - @plantuml -tsvg $< + @${MakefileBase}/bin/plantuml -tsvg $< @touch $@.dep %.pdf: %.image.tex diff --git a/bin/plantuml b/bin/plantuml new file mode 100755 index 0000000..1fce331 --- /dev/null +++ b/bin/plantuml @@ -0,0 +1,5 @@ +#!/bin/bash + +LOCATION=$(dirname $0) + +java -jar ${LOCATION}/plantuml.jar $@ diff --git a/bin/plantuml.jar b/bin/plantuml.jar new file mode 100644 index 0000000..6ff31d2 Binary files /dev/null and b/bin/plantuml.jar differ