소스 검색

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