From b5778dbab7243b2baf3275c4f983ca29c41c72e2 Mon Sep 17 00:00:00 2001 From: Svend Sorensen Date: Thu, 2 Sep 2004 15:22:53 +0000 Subject: [PATCH] Changed extension to .txt per the Docutils FAQ. --- docs/Makefile | 6 +++--- docs/{formats.rst => formats.txt} | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename docs/{formats.rst => formats.txt} (100%) diff --git a/docs/Makefile b/docs/Makefile index 86cac32..8f3b52e 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -4,7 +4,7 @@ RST2HTML= rst2html.py RST2LATEX= rst2latex.py LATEX2PDF= pdflatex -RSTFILES= $(wildcard *.rst) +RSTFILES= $(wildcard *.txt) HTMLFILES= $(RSTFILES:.rst=.html) LATEXFILES= $(RSTFILES:.rst=.tex) PDFFILES= $(RSTFILES:.rst=.pdf) @@ -15,10 +15,10 @@ html: $(HTMLFILES) latex: $(LATEXFILES) pdf: $(PDFFILES) -%.html: %.rst +%.html: %.txt $(RST2HTML) $< > $@ -%.tex: %.rst +%.tex: %.txt $(RST2LATEX) $< > $@ %.pdf: %.tex diff --git a/docs/formats.rst b/docs/formats.txt similarity index 100% rename from docs/formats.rst rename to docs/formats.txt