This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
adlin/tutorial/ansible/Makefile

19 lines
553 B
Makefile
Raw Normal View History

include ../pandoc-opts.mk
2023-03-02 11:23:47 +00:00
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
2023-05-05 07:57:22 +00:00
SOURCES_ANSIBLE = tutorial.md ansible.md rendu.md
PROJECT = project.md
2018-02-26 08:05:38 +00:00
2023-05-05 07:57:22 +00:00
all: tutorial-2.pdf tutorial-ansible.pdf project.pdf
2018-02-26 08:05:38 +00:00
2023-02-28 14:10:35 +00:00
tutorial-2.pdf: ${SOURCES_2}
pandoc ${PANDOCOPTS} -o $@ $+
tutorial-ansible.pdf: ${SOURCES_ANSIBLE}
2018-02-26 08:05:38 +00:00
pandoc ${PANDOCOPTS} -o $@ $+
2023-05-05 07:57:22 +00:00
project.pdf: ${PROJECT}
pandoc ${PANDOCOPTS} -o $@ $+
2018-02-26 08:05:38 +00:00
clean::
2023-05-05 07:57:22 +00:00
rm tutorial-2.pdf tutorial-ansible.pdf project.pdf