blob: d08e710603c8b1e3e95fa79ce238af370fcf11fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
PYTHON?=python
SLIDES=$(subst .txt,.html,$(wildcard *.txt))
slides: $(SLIDES)
%.html: %.txt
$(PYTHON) rst2s5.py --current-slide --language=en $< $@
clean:
rm -f *~ $(SLIDES)
|