doc/ja/Makefile
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Sun, 10 Dec 2006 21:53:01 +0100
changeset 3860 8e907b86126b
parent 1500 cadde8ebf167
permissions -rw-r--r--
fix reserved char on windows, '[]+' are allowed

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

all: man html

man: $(MAN)

html: $(HTML)

%: %.xml
	xmlto -x docbook.ja.xsl man $*.xml

%.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)