瀏覽代碼

Add rst2html variable.

Jelmer Vernooij 15 年之前
父節點
當前提交
51a659f375
共有 1 個文件被更改,包括 2 次插入1 次删除
  1. 2 1
      docs/tutorial/Makefile

+ 2 - 1
docs/tutorial/Makefile

@@ -1,9 +1,10 @@
+RST2HTML = rst2html
 TXT=$(shell ls *.txt)
 
 ALL: index.html
 
 index.html: $(TXT)
-	rst2html.py index.txt index.html
+	$(RST2HTML) index.txt index.html
 
 clean:
 	rm -f index.html