Working on tuto 2

This commit is contained in:
nemunaire 2018-02-26 09:05:38 +01:00 committed by Pierre-Olivier Mercier
commit 9225becbc0
10 changed files with 252 additions and 0 deletions

22
tutorial/ansible/Makefile Normal file
View file

@ -0,0 +1,22 @@
SOURCES = tutorial.md setup.md what.md ansible.md deploiement-svc.md expertise.md deploiement-next.md packaging.md
PANDOCOPTS = --latex-engine=xelatex \
--standalone \
--normalize \
--number-sections \
--smart \
-M lang=fr-FR \
-M fontsize=12pt \
-M papersize=a4paper \
-M mainfont="Linux Libertine O" \
-M monofont="FantasqueSansMono-Regular" \
-M sansfont="Linux Biolinum O" \
--include-in-header=../header.tex
all: tutorial.pdf
tutorial.pdf: ${SOURCES}
pandoc ${PANDOCOPTS} -o $@ $+
clean::
rm tutorial.pdf