blob: e9c9d8a578a068aeb3b48bb22fd8036723da99ee (
plain)
1
2
3
4
5
6
7
8
9
10
|
all: build/xmpp.pdf
build/xmpp.pdf: xmpp.rst img/
mkdir -p build
pandoc --listings -t beamer --latex-engine=xelatex \
-o build/xmpp.pdf \
xmpp.rst
clean:
rm -f build/xmpp.pdf
|