virli/tutorial/3/Makefile

25 lines
653 B
Makefile
Raw Normal View History

2018-10-31 08:41:27 +00:00
SOURCES = tutorial.md installation.md chroot.md pseudofs.md capabilities.md cgroups.md oom.md seccomp.md project-intro.md project-body.md project-rendu.md
PANDOCOPTS = --latex-engine=xelatex \
2016-10-03 10:27:18 +00:00
--standalone \
2018-10-31 08:41:27 +00:00
--normalize \
2016-10-03 10:27:18 +00:00
--number-sections \
2018-10-31 08:41:27 +00:00
--smart \
2017-10-16 21:01:53 +00:00
-M lang=fr-FR \
2016-10-03 10:27:18 +00:00
-M fontsize=12pt \
-M papersize=a4paper \
-M mainfont="Linux Libertine O" \
2017-10-15 20:30:48 +00:00
-M monofont="FantasqueSansMono-Regular" \
2016-10-03 10:27:18 +00:00
-M sansfont="Linux Biolinum O" \
2018-10-03 08:52:40 +00:00
-M colorlinks=true \
-M linkcolor="black" \
2016-10-03 10:27:18 +00:00
--include-in-header=../header.tex
all: tutorial.pdf
tutorial.pdf: ${SOURCES}
pandoc ${PANDOCOPTS} -o $@ $+
clean::
rm tutorial.pdf