From 27683355dbc5c6bb0f8e426b5ab7c258c6bdfca8 Mon Sep 17 00:00:00 2001 From: Camil Staps Date: Wed, 5 Oct 2016 23:31:40 +0200 Subject: Finish rough presentation --- Makefile | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 37cff96..b830da4 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,8 @@ +SHELL=/bin/bash + PRE:=docker.pdf -DEPS:=moby.pdf $(wildcard examples/*/Dockerfile) +DEPS_GEN:=moby.pdf compiling.png swarm.png +DEPS:=$(DEPS_GEN) $(wildcard examples/*/Dockerfile) AUX:=moby.svg TEX:=pdflatex @@ -15,7 +18,14 @@ all: $(PRE) convert $< $@ moby.svg: - wget https://www.docker.com/sites/default/files/moby.svg + curl https://www.docker.com/sites/default/files/moby.svg > $@ + +swarm.png: + curl https://www.docker.com/sites/default/files/docker-swarm-hero2.png > $@ + +compiling.png: + curl https://imgs.xkcd.com/comics/compiling.png > $@ clean: - $(RM) $(AUX) $(DEPS) $(PRE) + $(RM) -r $(AUX) $(DEPS_GEN) $(PRE) \ + docker.{aux,log,nav,out,snm,toc,vrb} _minted-* -- cgit v1.2.3