SOURCES		= subject.md project-part1.md project-part2.md rendu.md end.md
PANDOCOPTS	= --latex-engine=xelatex \
		  --standalone \
		  --normalize \
		  --smart \
		  -M lang=french \
		  -M fontsize=12pt \
		  -M papersize=a4paper \
		  -M mainfont="Linux Libertine O" \
		  -M monofont="Inconsolata" \
		  -M sansfont="Linux Biolinum O" \
		  --include-in-header=../tutorial/header.tex


all: subject.pdf

subject.pdf: ${SOURCES}
	pandoc ${PANDOCOPTS} -o $@ $+

clean::
	rm subject.pdf
