diff options
author | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-02-11 11:38:31 +0100 |
---|---|---|
committer | Elena ``of Valhalla'' Grandi <valhalla@trueelena.org> | 2017-02-11 11:38:31 +0100 |
commit | 8718ff0d401db830d8f07aff49d7efc2a13b9ed6 (patch) | |
tree | 0fff48ce7534aead8d11a072774a7a23ae2f3726 /slides/Makefile |
File per le slide
Diffstat (limited to 'slides/Makefile')
-rw-r--r-- | slides/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/slides/Makefile b/slides/Makefile new file mode 100644 index 0000000..5618848 --- /dev/null +++ b/slides/Makefile @@ -0,0 +1,10 @@ +all: build/presentazione_espruino.pdf + +build/presentazione_espruino.pdf: presentazione_espruino.rst + mkdir -p build + pandoc --listings -t beamer --latex-engine=xelatex \ + -o build/presentazione_espruino.pdf \ + presentazione_espruino.rst + +clean: + rm -f build/presentazione_espruino.pdf |