##// END OF EJS Templates
Fix revlog.parseindex...
Fix revlog.parseindex parseindex could fail if read returns too little data in the right moment (e.g. when there's still leftover data from the previous iteration and read returns less than "s" bytes).

File last commit:

r2233:3840cefa default
r2289:854954fd default
Show More
Makefile
37 lines | 698 B | text/x-makefile | MakefileLexer
Bryan O'Sullivan
Move hgrc documentation out to its own man page, hgrc(5)....
r671 SOURCES=$(wildcard *.[0-9].txt)
MAN=$(SOURCES:%.txt=%)
HTML=$(SOURCES:%.txt=%.html)
wilde@trapperkeeper.sha-bang.de
Added install target.
r2233 PREFIX=/usr/local
MANDIR=$(PREFIX)/man
INSTALL=install -c
mpm@selenic.com
Add a doc makefile...
r465
Thomas Arendsen Hein
Generate html documentation by default, too.
r1006 all: man html
mpm@selenic.com
Add a doc makefile...
r465
man: $(MAN)
html: $(HTML)
Benoit Boissinot
generate hg manpage from commands.py docstring...
r1814 hg.1.txt: hg.1.gendoc.txt
touch hg.1.txt
Thomas Arendsen Hein
Regenerate hg.1.gendoc.txt if commands.py changed.
r1819 hg.1.gendoc.txt: ../mercurial/commands.py
Benoit Boissinot
generate hg manpage from commands.py docstring...
r1814 python gendoc.py > $@
Bryan O'Sullivan
Move hgrc documentation out to its own man page, hgrc(5)....
r671 %: %.xml
xmlto man $*.xml
mpm@selenic.com
Add a doc makefile...
r465
Bryan O'Sullivan
Move hgrc documentation out to its own man page, hgrc(5)....
r671 %.xml: %.txt
asciidoc -d manpage -b docbook $*.txt
mpm@selenic.com
Add a doc makefile...
r465
Bryan O'Sullivan
Move hgrc documentation out to its own man page, hgrc(5)....
r671 %.html: %.txt
Thomas Arendsen Hein
Fall back to asciidoc6 html backend if html4 doesn't work....
r1689 asciidoc -b html4 $*.txt || asciidoc -b html $*.txt
mpm@selenic.com
Add a doc makefile...
r465
wilde@trapperkeeper.sha-bang.de
Added install target.
r2233 install: man
for i in $(MAN) ; do \
subdir=`echo $$i | sed -n 's/.\+\(\.[0-9]\)$$/man\1/p'` ; \
mkdir -p $(MANDIR)/$$subdir ; \
$(INSTALL) $$i $(MANDIR)/$$subdir ; \
done
mpm@selenic.com
Add a doc makefile...
r465 clean:
Thomas Arendsen Hein
make clean now removes generated documentation.
r1879 $(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html) *.[0-9].gendoc.txt