summaryrefslogtreecommitdiff
path: root/doc/Makefile
blob: bcaa3e19136a27257bc0d46133ff89bd1e0ab290 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Documentation Makefile

.SUFFIXES: .txt .html

APP = rst2html
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)

clean:
	rm $(PAGES)