summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3745f7c74b9b178c88097394c37777ceed32b535 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
all: talk.pdf

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 $(OUT)