diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-10-11 17:19:08 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-10-11 17:19:08 +0200 |
commit | 16f9b43a67b0b29a9d106782c7044664ad575aa1 (patch) | |
tree | 331e41f1691e8fb02c92f73b1c01b41f18c407f0 /xmpp/slides/Makefile | |
parent | ffe8f4bd667c6a5ddd3b83b0978cc1137d14d334 (diff) |
XMPP: first images and makefile
Diffstat (limited to 'xmpp/slides/Makefile')
-rw-r--r-- | xmpp/slides/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/xmpp/slides/Makefile b/xmpp/slides/Makefile new file mode 100644 index 0000000..e9c9d8a --- /dev/null +++ b/xmpp/slides/Makefile @@ -0,0 +1,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 |