virli/tutorial/Makefile

10 lines
374 B
Makefile
Raw Normal View History

2014-11-28 07:46:24 +00:00
all: tutorial.pdf
.md.pdf:
2014-11-29 17:18:53 +00:00
pandoc --latex-engine=xelatex --toc --normalize -M lang=frenchb --standalone -N --template=../template.tex -M fontsize=12pt -M papersize=a4paper -o $@ $<
2014-11-28 16:10:11 +00:00
.md.tex:
2014-11-29 17:18:53 +00:00
pandoc --latex-engine=xelatex --toc --normalize -M lang=frenchb --standalone -N --template=../template.tex -M fontsize=12pt -M papersize=a4paper -o $@ $<
2014-11-28 07:46:24 +00:00
.SUFFIXES: .md .tex .pdf