aboutsummaryrefslogtreecommitdiff
path: root/articles/ui/figs/Makefile
diff options
context:
space:
mode:
authorJeff Burdges <burdges@gnunet.org>2016-08-26 17:47:41 +0200
committerJeff Burdges <burdges@gnunet.org>2016-08-26 17:47:41 +0200
commitf565c522f941ef48c4d9e1c66feac747e9be77e6 (patch)
treee34315ade1abc9bd23a829b9530a7ac3ea95c398 /articles/ui/figs/Makefile
parenta3d68aa969d802e013f62ac1e47715a7af97c4b2 (diff)
downloadwallet-core-f565c522f941ef48c4d9e1c66feac747e9be77e6.tar.xz
Makefile for PlantUML
Diffstat (limited to 'articles/ui/figs/Makefile')
-rw-r--r--articles/ui/figs/Makefile15
1 files changed, 15 insertions, 0 deletions
diff --git a/articles/ui/figs/Makefile b/articles/ui/figs/Makefile
new file mode 100644
index 000000000..bf5ac5261
--- /dev/null
+++ b/articles/ui/figs/Makefile
@@ -0,0 +1,15 @@
+
+plantuml = plantuml
+
+%.svg : %.pml
+ $(plantuml) -tsvg $<
+
+%.pdf : %.pml
+ $(plantuml) -tpdf $<
+
+files = taler-pay.pml taler-withdraw.pml \
+cc3ds.pml contract.pml paypal.pml \
+bitcoin.pml
+
+all : $(files:.pml=.pdf) $(files:.pml=.svg)
+