aboutsummaryrefslogtreecommitdiffstats
path: root/operational-plans/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'operational-plans/Makefile')
-rw-r--r--operational-plans/Makefile9
1 files changed, 9 insertions, 0 deletions
diff --git a/operational-plans/Makefile b/operational-plans/Makefile
index 276c347..7c71e5c 100644
--- a/operational-plans/Makefile
+++ b/operational-plans/Makefile
@@ -1,4 +1,5 @@
ALL = \
+ operational-plan-2020 \
operational-plan-2019 \
operational-plan-2018 \
operational-plan-2015 \
@@ -13,6 +14,14 @@ $(ALL): %: %.pdf
# General cases
+%.pdf: %.main.tex %._.tex
+ pdflatex -jobname=$(basename $@) $<
+ ! grep -q "Rerun to get cross-references right" $(basename $@).log || \
+ pdflatex -jobname=$(basename $@) $<
+
+%._.tex: %.mdwn
+ pandoc -f markdown -t latex < $< > $@
+
%.pdf: %.main.tex %.tex ../preamble/preamble.tex
latex_count=5 ;\
latex_log=$$(echo $< | sed 's/.tex/.log/') ;\