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

16 lines
421 B
Makefile
Raw Normal View History

include ../pandoc-opts.mk
2023-03-02 00:55:12 +00:00
SOURCES_2 = tutorial-2.md setup.md maatma.md what.md netfilter.md anssi.md vitrine.md nameserver.md
2023-02-28 14:10:35 +00:00
SOURCES_ANSIBLE = tutorial.md ansible.md deploiement-svc.md rendu.md
2018-02-26 08:05:38 +00:00
2023-02-28 14:10:35 +00:00
all: tutorial-2.pdf tutorial-ansible.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 $@ $+
clean::
2023-02-28 14:10:35 +00:00
rm tutorial-2.pdf tutorial-ansible.pdf