blob: 2d7f5b4d40782a52f6697acd0af2c174934a5f5c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
all: build/xmpp.pdf
build/xmpp.pdf: xmpp.rst img/XMPP_logo.pdf img/
mkdir -p build
pandoc --listings -t beamer --pdf-engine=xelatex \
-o build/xmpp.pdf \
xmpp.rst
img/XMPP_logo.pdf: img/XMPP_logo.svg
rsvg-convert -f pdf img/XMPP_logo.svg > img/XMPP_logo.pdf
clean:
rm -f build/xmpp.pdf
|