doc/Makefile
author mpm@selenic.com
Tue, 16 Aug 2005 23:49:53 -0800
changeset 932 fdf3b7f3b3b4
parent 671 efa4a7e2f322
child 1006 b0e581438835
permissions -rw-r--r--
The TODO and the FAQ now live on the Wiki

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

all: man

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)