Changed extension to .txt per the Docutils FAQ.

This commit is contained in:
Svend Sorensen
2004-09-02 15:22:53 +00:00
parent 47003b5ca0
commit b5778dbab7
2 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ RST2HTML= rst2html.py
RST2LATEX= rst2latex.py RST2LATEX= rst2latex.py
LATEX2PDF= pdflatex LATEX2PDF= pdflatex
RSTFILES= $(wildcard *.rst) RSTFILES= $(wildcard *.txt)
HTMLFILES= $(RSTFILES:.rst=.html) HTMLFILES= $(RSTFILES:.rst=.html)
LATEXFILES= $(RSTFILES:.rst=.tex) LATEXFILES= $(RSTFILES:.rst=.tex)
PDFFILES= $(RSTFILES:.rst=.pdf) PDFFILES= $(RSTFILES:.rst=.pdf)
@@ -15,10 +15,10 @@ html: $(HTMLFILES)
latex: $(LATEXFILES) latex: $(LATEXFILES)
pdf: $(PDFFILES) pdf: $(PDFFILES)
%.html: %.rst %.html: %.txt
$(RST2HTML) $< > $@ $(RST2HTML) $< > $@
%.tex: %.rst %.tex: %.txt
$(RST2LATEX) $< > $@ $(RST2LATEX) $< > $@
%.pdf: %.tex %.pdf: %.tex