summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: dcaace88379ce302b071adced45a215001d6a5b5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
NAME=slides
FILES=$(NAME).pdf $(NAME).odp $(NAME).html

all: $(FILES)

%.pdf: %.rst
	rst2xetex $< $(basename $<).tex
	xelatex $(basename $<).tex
	xelatex $(basename $<).tex

%.odp: %.rst
	rst2odp $< $@

%.html: %.rst
	rst2s5 $< $@

clean:
	rm -f *.aux *.log *.tex