diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2025-07-11 15:53:22 +0200 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2025-07-11 15:53:22 +0200 |
commit | 5b536c8ca0dea2fe5d1b7102fe8d753f08ff51aa (patch) | |
tree | 5762d8c60a833f0c7acd5742ec585b32597484ca /xmpp-debian/slides/Makefile | |
parent | f3bf9817b2cdebdd03a007a8d8b0cd1fc14b4fc7 (diff) |
start slides and transcriptish for an XMPP talk at debconf
Diffstat (limited to 'xmpp-debian/slides/Makefile')
-rw-r--r-- | xmpp-debian/slides/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/xmpp-debian/slides/Makefile b/xmpp-debian/slides/Makefile new file mode 100644 index 0000000..2d7f5b4 --- /dev/null +++ b/xmpp-debian/slides/Makefile @@ -0,0 +1,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 |