aboutsummaryrefslogtreecommitdiff
path: root/articles/ui/figs/Makefile
diff options
context:
space:
mode:
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)
+