summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2018-10-08 15:52:34 +0200
committerGuido Günther <agx@sigxcpu.org>2018-10-09 16:56:17 +0200
commite0f186f5c2a64f08192d34a5d19fe2c589a853ea (patch)
tree5ddb2e74b0454b4c6815e3dbe676496ab5da6ce5 /Makefile
parent63309e95b8bb99d58d9a61afb17675d9a52e70af (diff)
Status updateHEADmaster
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 17 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 9390105..3745f7c 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,23 @@
all: talk.pdf
-talk.pdf: talk.org
- # org-src-preserve-indentation prevents spaces converted to tabs in babel)
+SOURCES=\
+ talk.org \
+ img/l5-id.jpg \
+ img/libhandy.jpg \
+ img/calls.jpg \
+ img/chatty.jpg \
+ img/fractal.jpg \
+ img/phosh.jpg \
+ img/osk.jpg \
+ img/devkit.jpg \
+ $(NULL)
+
+OUT=talk.pdf
+
+$(OUT): $(SOURCES)
+ # org-src-preserve-indentation prevents spaces converted to tabs in babel)
emacs -batch $< --eval='(setq org-src-preserve-indentation t)' \
--eval='(org-beamer-export-to-pdf)'
clean:
- rm -f *.tex
+ rm -f *.tex $(OUT)