doc/Makefile
author Vadim Gelfer <vadim.gelfer@gmail.com>
Sun, 30 Apr 2006 16:30:39 -0700
changeset 2166 d0c02b4dce9a
parent 1879 9ef0850b9b68
child 2233 3840cefa5222
permissions -rw-r--r--
do not check sys.argv from localrepo when running hooks. instead add traceback field to ui class.

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

all: man html

man: $(MAN)

html: $(HTML)

hg.1.txt: hg.1.gendoc.txt
	touch hg.1.txt

hg.1.gendoc.txt: ../mercurial/commands.py
	python gendoc.py > $@

%: %.xml
	xmlto man $*.xml

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

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

clean:
	$(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html) *.[0-9].gendoc.txt