Add latest tutorial revision
This commit is contained in:
parent
98b9ebdd7e
commit
3627de3afe
9 changed files with 348 additions and 164 deletions
|
|
@ -1,15 +1,18 @@
|
|||
include ../pandoc-opts.mk
|
||||
|
||||
SOURCES_2 = tutorial-2.md setup.md maatma.md what.md netfilter.md anssi.md vitrine.md nameserver.md nameserver-anssi.md nameserver-troubleshooting.md
|
||||
SOURCES_ANSIBLE = tutorial.md ansible.md deploiement-svc.md rendu.md
|
||||
SOURCES_ANSIBLE = tutorial.md ansible.md rendu.md
|
||||
PROJECT = project.md
|
||||
|
||||
|
||||
all: tutorial-2.pdf tutorial-ansible.pdf
|
||||
all: tutorial-2.pdf tutorial-ansible.pdf project.pdf
|
||||
|
||||
tutorial-2.pdf: ${SOURCES_2}
|
||||
pandoc ${PANDOCOPTS} -o $@ $+
|
||||
tutorial-ansible.pdf: ${SOURCES_ANSIBLE}
|
||||
pandoc ${PANDOCOPTS} -o $@ $+
|
||||
project.pdf: ${PROJECT}
|
||||
pandoc ${PANDOCOPTS} -o $@ $+
|
||||
|
||||
clean::
|
||||
rm tutorial-2.pdf tutorial-ansible.pdf
|
||||
rm tutorial-2.pdf tutorial-ansible.pdf project.pdf
|
||||
|
|
|
|||
Reference in a new issue