summaryrefslogtreecommitdiff
path: root/Makefile
blob: 365793c1581167d1757ec3468cc07305b26bf5f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
SOURCE=debian.mdwn
PDF=$(SOURCE:mdwn=pdf)
REVEALJS=$(SOURCE:mdwn=html)

IMAGES=$(wildcard *.png) \
	dgm.png

all: ${REVEALJS} ${PDF}

${REVEALJS}: ${SOURCE} ${IMAGES} Makefile reveal.js
	pandoc -V transition=fade -V theme=godiug -t revealjs -s ${SOURCE} -o ${REVEALJS}
	sed -i -e 's,<body>,<body><div id="watermark"><img src="logo.png"></div>,' ${REVEALJS}

${PDF}: ${SOURCE} Makefile
	pandoc -t beamer -s ${SOURCE} -o ${PDF}

dgm.png: dgm.csv dgm.plot
	gnuplot dgm.plot

reveal.js:
	git clone https://github.com/hakimel/reveal.js.git
	git checkout 2.6.2

clean:
	rm -f dgm.png