doc/Makefile
author Benoit Boissinot <benoit.boissinot@ens-lyon.org>
Sun, 19 Feb 2006 18:59:20 +0100
changeset 1748 2428e6d66f06
parent 1689 c6c76ead1cc1
child 1814 7956893e8458
permissions -rw-r--r--
bisect: fix for recent changes disallowing "false" merges

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)