virli/tutorial/2/Makefile

23 lines
541 B
Makefile
Raw Normal View History

2016-09-08 01:44:20 +00:00
SOURCES = tutorial.md installation.md what.md first.md supervisor.md goodpractices.md compose.md project.md
2015-10-07 01:52:31 +00:00
PANDOCOPTS = --latex-engine=xelatex \
--standalone \
--normalize \
--number-sections \
2016-09-15 02:27:59 +00:00
--smart \
-M lang=french \
2015-10-07 01:52:31 +00:00
-M fontsize=12pt \
-M papersize=a4paper \
2016-09-15 02:27:59 +00:00
-M mainfont="Linux Libertine O" \
-M monofont="Inconsolata" \
-M sansfont="Linux Biolinum O" \
--include-in-header=../header.tex
2015-10-07 01:52:31 +00:00
all: tutorial.pdf
tutorial.pdf: ${SOURCES}
pandoc ${PANDOCOPTS} -o $@ $+
clean::
rm tutorial.pdf