virli/tutorial/docker-basis/Makefile

23 lines
544 B
Makefile
Raw Normal View History

SOURCES = tutorial.md installation.md what.md first.md cleaning.md volumes.md linking.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 \
2017-10-16 21:01:53 +00:00
-M lang=fr-FR \
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" \
2017-10-15 20:30:48 +00:00
-M monofont="FantasqueSansMono-Regular" \
2016-09-08 01:44:20 +00:00
-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