blob: 7aa1483c1ec921a323a26f23635715eae0c72cd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
ASCIIDOC_OPTS = \
-f asciidoc.conf
HTML_SOURCES = readme hacking
HTML_PAGES = readme.html hacking.html
%.html: %.txt asciidoc.conf
asciidoc $(ASCIIDOC_OPTS) --out-file=./$@ $*.txt
all: $(HTML_PAGES)
.PHONY: all
|