File: Makefile

package info (click to toggle)
lxml 6.0.2-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 32,588 kB
  • sloc: python: 30,649; javascript: 1,640; ansic: 311; xml: 267; makefile: 243; sh: 68
file content (11 lines) | stat: -rw-r--r-- 180 bytes parent folder | download | duplicates (9)
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)