doc/Makefile
author Matt Mackall <mpm@selenic.com>
Tue, 18 Oct 2005 23:05:30 -0700
changeset 1409 964baa35faf8
parent 1006 b0e581438835
child 1428 9346a7fb3fe2
permissions -rw-r--r--
hgweb: add shortcuts for all the web commands / fix empty arg bug

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)