From 087036ff7eeb173ed65080f1ae562cad2067be4d Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Fri, 9 Jan 2015 10:16:36 +0100 Subject: Initial commit --- Makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Makefile (limited to 'Makefile') diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e37cad5 --- /dev/null +++ b/Makefile @@ -0,0 +1,19 @@ +SOURCE=gbp.mdwn +PDF=$(SOURCE:mdwn=pdf) +REVEALJS=$(SOURCE:mdwn=html) + +PICS = \ + branches.png \ + gbp-buildpackage.png \ + popcon-vc-build-tools.png \ + $(NULL) + +SOURCES = ${SOURCE} ${PICS} Makefile + +all: ${REVEALJS} ${PDF} + +${REVEALJS}: ${SOURCES} + pandoc -V transition=fade -V theme=moon -t revealjs -s ${SOURCE} -o ${REVEALJS} + +${PDF}: ${SOURCES} + pandoc -t beamer -s ${SOURCE} -o ${PDF} -- cgit v1.2.3