##// END OF EJS Templates
Added signature for changeset fb4b6d5fe100b0886f8bc3d6731ec0e5ed5c4694
Added signature for changeset fb4b6d5fe100b0886f8bc3d6731ec0e5ed5c4694

File last commit:

r1500:cadde8eb default
r4725:cf8b8f62 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)