doc/Makefile
author Josef "Jeff" Sipek <jeffpc@optonline.net>
Mon, 12 Dec 2005 01:25:24 -0500
changeset 1578 4a14edbda3ca
parent 1428 9346a7fb3fe2
child 1689 c6c76ead1cc1
permissions -rw-r--r--
[hgweb] Remove reference to a non-existing file

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 html4 $*.txt

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