virli/tutorial/1/Makefile

23 lines
545 B
Makefile
Raw Normal View History

2016-09-08 01:44:20 +00:00
SOURCES = tutorial.md installation.md what.md first.md dockerfile.md volumes.md linking.md cleaning.md rendu.md
2015-10-07 01:45:39 +00:00
PANDOCOPTS = --latex-engine=xelatex \
--standalone \
--normalize \
--number-sections \
2016-09-08 01:44:20 +00:00
--smart \
2016-09-08 02:40:34 +00:00
-M lang=french \
2015-10-07 01:45:39 +00:00
-M fontsize=12pt \
-M papersize=a4paper \
2016-09-08 01:44:20 +00:00
-M mainfont="Linux Libertine O" \
-M monofont="Inconsolata" \
-M sansfont="Linux Biolinum O" \
--include-in-header=../header.tex
2015-10-07 01:45:39 +00:00
all: tutorial.pdf
tutorial.pdf: ${SOURCES}
pandoc ${PANDOCOPTS} -o $@ $+
clean::
rm tutorial.pdf