We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 580307f commit 520870cCopy full SHA for 520870c
doc/Makefile
@@ -1,3 +1,4 @@
1
+RST2HTML = $(shell which rst2html || which rst2html.py)
2
RSTCSS = $(shell python -c 'import docutils.writers.html4css1 as m; print m.Writer.default_stylesheet_path')
3
RSTOPTS = --stylesheet-path=style.css,$(RSTCSS) --initial-header-level=2
4
@@ -10,7 +11,7 @@ all : html
10
11
html : $(HTML)
12
13
%.html: %.rst style.css
- rst2html $(RSTOPTS) $< $@
14
+ $(RST2HTML) $(RSTOPTS) $< $@
15
16
clean:
17
rm -f $(HTML)
0 commit comments