diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-05-27 18:23:02 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-05-27 18:23:02 +0200 |
commit | a559eccc775d5b8efb66685df4e04257d6a42cb5 (patch) | |
tree | c37635a34206beb77a3dbfef3cf66469a0387f25 | |
parent | b92b77f2f3ad0b6683c5f8d6d9a02870ea3bef28 (diff) |
add makefile for plantuml file
-rw-r--r-- | docs/makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/makefile b/docs/makefile new file mode 100644 index 0000000..0bbe6e1 --- /dev/null +++ b/docs/makefile @@ -0,0 +1,8 @@ +all: class-diag.svg + +%.svg: %.puml + plantuml -tsvg $< + +clean: + git clean -fxdi + |