##// END OF EJS Templates
Pager extension: switch it off if --debugger is set...
Pager extension: switch it off if --debugger is set The pager is preventing the debugger prompt and much of the debugger output to be refreshed. Moreover the pager does not make sense when debugging line by line. (This supersedes the similar ui.debugflag patch. Disabling the pager for debug output doesn't make that much sense, as this is actually when the pager might be useful.)

File last commit:

r1500:cadde8eb default
r6456:db5324d3 default
Show More
Makefile
21 lines | 350 B | text/x-makefile | MakefileLexer
"Hidetaka Iwai "
Added Japanese translations of manpages.
r1489 SOURCES=$(wildcard *.[0-9].ja.txt)
MAN=$(SOURCES:%.txt=%)
HTML=$(SOURCES:%.txt=%.html)
all: man html
man: $(MAN)
html: $(HTML)
%: %.xml
Hidetaka Iwai
Fixed to convert to man properly.
r1500 xmlto -x docbook.ja.xsl man $*.xml
"Hidetaka Iwai "
Added Japanese translations of manpages.
r1489
%.xml: %.txt
-asciidoc -d manpage -b docbook -f docbook.ja.conf $*.txt
%.html: %.txt
asciidoc -b html4 $*.txt
clean:
$(RM) $(MAN:%.ja=%) $(MAN:%=%.xml) $(MAN:%=%.html)