PANDOC:=pandoc
TEX:=lualatex

OUTPUT:=./out

all: report.pdf

%.pdf: %.md
	pandoc --from markdown --to pdf -o ${OUTPUT}/$@ $^ --pdf-engine=${TEX} -N
