diff options
Diffstat (limited to 'support/Makefile')
| -rw-r--r-- | support/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/support/Makefile b/support/Makefile new file mode 100644 index 0000000..2a45ef1 --- /dev/null +++ b/support/Makefile @@ -0,0 +1,11 @@ +all: 2024-10-10.pdf + +%.pdf: %.md + pandoc -t beamer -f markdown+implicit_figures \ + -V theme:default -V aspectratio:169 \ + --pdf-engine=xelatex \ + -V monofont='DejaVu Sans Mono' \ + $(<) -o $(@) + +clean: + rm -rf *.pdf |
