summaryrefslogtreecommitdiff
path: root/Makefile
blob: e37cad504accf8b190b2c5b3f3422f25e9e80f7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}