Procházet zdrojové kódy

Add rst2html variable.

Jelmer Vernooij před 15 roky
rodič
revize
51a659f375
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  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