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