From 7752d73216578d5961751b5d0535088d384b4aa6 Mon Sep 17 00:00:00 2001 From: Arnaud Bailly Date: Sat, 25 Jan 2025 10:45:41 +0100 Subject: Move λ-calcul workshop code to subdirectory MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lambda-calcul/support/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lambda-calcul/support/Makefile (limited to 'lambda-calcul/support/Makefile') diff --git a/lambda-calcul/support/Makefile b/lambda-calcul/support/Makefile new file mode 100644 index 0000000..2a45ef1 --- /dev/null +++ b/lambda-calcul/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 -- cgit v1.2.3