summaryrefslogtreecommitdiffstats
path: root/documentation/Makefile
blob: 10ca90bd734b198e2ea24148cde0ef6dde21780b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
ASCIIDOC_OPTS = \
	-f asciidoc.conf

HTML_SOURCES = readme
HTML_PAGES = readme.html

%.html: %.txt asciidoc.conf
	asciidoc $(ASCIIDOC_OPTS) --out-file=./$@ $*.txt

all: $(HTML_PAGES)

.PHONY: all