summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2023-09-04 23:42:05 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2023-09-05 10:38:31 +0200
commit8b3393b22755f542135f37dfc7ec0d4d14fb7d51 (patch)
treeb05645b9d1a623402494eeccdf9e457ab7c39bb1 /Makefile
parentbc8b3b65c592cf8c8345569bce8650b45695be57 (diff)
Makefile ftw
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..def8f44
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,14 @@
+all: eu es
+
+eu: pdf/eu/1.pdf pdf/eu/2.pdf
+es: pdf/es/1.pdf pdf/es/2.pdf
+
+pdf/%.pdf: %.md template.tex
+ mkdir -p $(@D)
+ pandoc -f markdown+smart -t beamer $< -o $@ --pdf-engine=xelatex \
+ --template="template.tex"
+
+clean:
+ rm -rf pdf
+
+.PHONY: all clean