doc/Makefile
author Vadim Gelfer <vadim.gelfer@gmail.com>
Tue, 31 Jan 2006 08:06:35 -0800
changeset 1669 91d40fc959f0
parent 1428 9346a7fb3fe2
child 1689 c6c76ead1cc1
permissions -rw-r--r--
turn patchbomb script into an extension module. command name is now 'hg email'.

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)