summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorReuben Thomas <rrt@sc3d.org>2013-01-08 19:33:39 +0000
committerReuben Thomas <rrt@sc3d.org>2013-01-08 19:33:39 +0000
commitd2db8f840b10d86397082150dae04e613ed23f98 (patch)
treeb132e70479808556b662f90c4038a6e651eb3875 /doc
parent7a011b28996890121a5e47d689e974577675442d (diff)
downloadlrexlib-d2db8f840b10d86397082150dae04e613ed23f98.tar.gz
Simplify build system, and release directly from git
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile25
1 files changed, 0 insertions, 25 deletions
diff --git a/doc/Makefile b/doc/Makefile
deleted file mode 100644
index 3dc3402..0000000
--- a/doc/Makefile
+++ /dev/null
@@ -1,25 +0,0 @@
-# Documentation Makefile
-
-APP = rst2html
-CP = cp -a
-RM = rm
-IDX = ../README.rst
-
-.SUFFIXES: .txt .html
-
-CSS = --stylesheet-path=lrexlib.css --link-stylesheet
-HDR = --initial-header-level=2
-DT = --date --time
-
-PAGES = index.html manual.html
-
-.txt.html:
- $(APP) $(CSS) $(HDR) $(DT) $< $@
-
-all: $(PAGES)
-
-index.txt: $(IDX)
- $(CP) $< $@
-
-clean:
- $(RM) $(PAGES) index.txt