virli/tutorial/docker-orchestration/Makefile

26 lines
635 B
Makefile
Raw Normal View History

2018-02-16 17:44:04 +00:00
SOURCES = tutorial.md setup.md what.md manual.md compose.md machine.md swarm.md stack.md rendu.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 \
2017-10-16 21:01:53 +00:00
-M lang=fr-FR \
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" \
2017-10-15 20:30:48 +00:00
-M monofont="FantasqueSansMono-Regular" \
2016-09-15 02:27:59 +00:00
-M sansfont="Linux Biolinum O" \
2018-10-03 08:52:40 +00:00
-M colorlinks=true \
-M linkcolor="black" \
-M urlcolor="[rgb]{0.2,0.6,0.4}" \
2016-09-15 02:27:59 +00:00
--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