doc/Makefile
author mpm@selenic.com
Fri, 26 Aug 2005 20:56:50 -0700
changeset 1079 a37974035f1f
parent 1006 b0e581438835
child 1428 9346a7fb3fe2
permissions -rw-r--r--
Document archive download options

SOURCES=$(wildcard *.[0-9].txt)
MAN=$(SOURCES:%.txt=%)
HTML=$(SOURCES:%.txt=%.html)

all: man html

man: $(MAN)

html: $(HTML)

%: %.xml
	xmlto man $*.xml

%.xml: %.txt
	asciidoc -d manpage -b docbook $*.txt

%.html: %.txt
	asciidoc -b html $*.txt

clean:
	$(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html)