virli/tutorial/4/Makefile

23 lines
541 B
Makefile
Raw Normal View History

2016-10-19 22:40:21 +00:00
SOURCES = tutorial.md mount.md namespaces.md networkns.md pidns.md mountns.md userns.md clone.md project.md
2015-10-29 04:45:40 +00:00
PANDOCOPTS = --latex-engine=xelatex \
--standalone \
--normalize \
--number-sections \
2016-10-19 03:24:05 +00:00
--smart \
-M lang=french \
2015-10-29 04:45:40 +00:00
-M fontsize=12pt \
-M papersize=a4paper \
2016-10-19 03:24:05 +00:00
-M mainfont="Linux Libertine O" \
-M monofont="Inconsolata" \
-M sansfont="Linux Biolinum O" \
--include-in-header=../header.tex
2015-10-29 04:45:40 +00:00
all: tutorial.pdf
tutorial.pdf: ${SOURCES}
pandoc ${PANDOCOPTS} -o $@ $+
clean::
rm tutorial.pdf