summaryrefslogtreecommitdiff
path: root/Makefile
blob: def8f44cf2f6d39a3e091e0c8dd645ba0d297fa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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