From 1068beec52099f908781a3376ee2e59d36ce18f9 Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Fri, 14 Aug 2015 21:59:57 +0200 Subject: Initial commit --- Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..40ceea3 --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +SOURCE=topics.mdwn +PDF=$(SOURCE:mdwn=pdf) +REVEALJS=$(SOURCE:mdwn=html) + +IMAGES=$(wildcard *.png) + +all: ${REVEALJS} ${PDF} + +${REVEALJS}: ${SOURCE} ${IMAGES} Makefile reveal.js + pandoc -V transition=fade -V theme=moon -t revealjs -s ${SOURCE} -o ${REVEALJS} + +${PDF}: ${SOURCE} Makefile + pandoc -t beamer -s ${SOURCE} -o ${PDF} + +reveal.js: + git clone https://github.com/hakimel/reveal.js.git + git checkout 2.6.2 -- cgit v1.2.3