doc/Makefile
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Tue, 21 Feb 2006 23:50:53 +0100
changeset 1788 750b9cd83965
parent 1689 c6c76ead1cc1
child 1814 7956893e8458
permissions -rw-r--r--
change the default timeout to 600 seconds

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

all: man html

man: $(MAN)

html: $(HTML)

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