view doc/Makefile @ 1144:8a39df05d2c1

Documented passing list or dict instead of config file in hgwebdir.cgi
author Thomas Arendsen Hein <thomas@intevation.de>
date Mon, 29 Aug 2005 07:42:46 +0200
parents b0e581438835
children 9346a7fb3fe2
line wrap: on
line source

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 html $*.txt

clean:
	$(RM) $(MAN) $(MAN:%=%.xml) $(MAN:%=%.html)