SRC=$(wildcard *.md)
PDF=$(SRC:%.md=%.pdf)

all: $(PDF)

%.pdf: %.md ../../scripts/pandoc-document-custom.tex
	../../scripts/make_document.sh $< $@

clean:
	rm *.pdf
