]> git.phdru.name Git - extfs.d.git/blob - Makefile
Feat(torrent): Try harder to guess encoding
[extfs.d.git] / Makefile
1 .SUFFIXES: # Clear the suffix list
2 .SUFFIXES: .txt .html
3
4
5 %.html: %.txt
6         rst2html.py --stylesheet=/dev/null -- $< >$@
7
8
9 .PHONY: all
10 all: docs
11
12
13 .PHONY: docs
14 docs: INSTALL.html torrent-INSTALL.html xml-INSTALL.html
15
16
17 CLEANFILES = *.py[co]
18
19 .PHONY: clean
20 clean:
21         rm -f $(CLEANFILES)