blob: dcf82183d771d8e8662ba10ee5eef3df79cc7584 (
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 --latex-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
|