diff options
author | Camil Staps | 2016-10-05 23:31:40 +0200 |
---|---|---|
committer | Camil Staps | 2016-10-05 23:31:40 +0200 |
commit | 27683355dbc5c6bb0f8e426b5ab7c258c6bdfca8 (patch) | |
tree | aafe81d3c01aaf8a7a7bd16c83fe23f23da0f555 /Makefile | |
parent | Introductie, dockerfiles, cli (diff) |
Finish rough presentation
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 13 insertions, 3 deletions
@@ -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-* |