aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-05-27 18:23:02 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-05-27 18:23:02 +0200
commita559eccc775d5b8efb66685df4e04257d6a42cb5 (patch)
treec37635a34206beb77a3dbfef3cf66469a0387f25 /docs
parentb92b77f2f3ad0b6683c5f8d6d9a02870ea3bef28 (diff)
add makefile for plantuml file
Diffstat (limited to 'docs')
-rw-r--r--docs/makefile8
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
+