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
399 B
Makefile

include ../pandoc-opts.mk
SOURCES_2 = tutorial-2.md setup.md maatma.md what.md vitrine.md nameserver.md
SOURCES_ANSIBLE = tutorial.md ansible.md deploiement-svc.md rendu.md
all: tutorial-2.pdf tutorial-ansible.pdf
tutorial-2.pdf: ${SOURCES_2}
pandoc ${PANDOCOPTS} -o $@ $+
tutorial-ansible.pdf: ${SOURCES_ANSIBLE}
pandoc ${PANDOCOPTS} -o $@ $+
clean::
rm tutorial-2.pdf tutorial-ansible.pdf