summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2010-08-01 11:21:08 +0100
committerReuben Thomas <rrt@sc3d.org>2010-08-01 11:21:08 +0100
commit6234d16e51f6c43c3440783a9d1e3644b5f34c44 (patch)
tree5cb99849d8e3e607923bfd31083cb5ce05f693eb
parent94972d73a8cb8a28e030108391dbee5cd4aca640 (diff)
downloadlrexlib-6234d16e51f6c43c3440783a9d1e3644b5f34c44.tar.gz
Remove old commented-out -gt which is not documented in rst2html(1).
Change default name of app to rst2html in accordance with common installed name. Add a clean target.
-rwxr-xr-xdoc/Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/doc/Makefile b/doc/Makefile
index 7da4849..bcaa3e1 100755
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -2,13 +2,17 @@
.SUFFIXES: .txt .html
-APP = rst2html.py
+APP = rst2html
CSS = --stylesheet-path=lrexlib.css --link-stylesheet
HDR = --initial-header-level=2
DT = --date --time
-#GT = -gt
+
+PAGES = index.html manual.html
.txt.html:
- $(APP) $(CSS) $(GT) $(HDR) $(DT) $< $@
+ $(APP) $(CSS) $(HDR) $(DT) $< $@
+
+all: $(PAGES)
-all: index.html manual.html
+clean:
+ rm $(PAGES)