aboutsummaryrefslogtreecommitdiff
path: root/makefile
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-09-03 22:03:47 +0200
committerLoek Le Blansch <loek@pipeframe.xyz>2024-09-03 22:03:47 +0200
commit7e6e73b123d741eb419e3391fb27c2cc00271bac (patch)
treefbfaa94f0071349ff49f63e51c651dbf890d1766 /makefile
parentf5da5d0d5489481ddb18dcb6088059884efeb024 (diff)
add more cruft
Diffstat (limited to 'makefile')
-rw-r--r--makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/makefile b/makefile
index e69de29..0802e01 100644
--- a/makefile
+++ b/makefile
@@ -0,0 +1,11 @@
+all: plan.pdf
+
+LATEXMKFLAGS += -cd
+LATEXMKFLAGS += -interaction=nonstopmode
+%.pdf: %.tex
+ -latexmk $(LATEXMKFLAGS) $<
+
+%.puml.pdf: %.puml
+ plantuml -tpdf $<
+ mv $*.pdf $@
+