view doc/Makefile @ 1172:3f30a5e7e15b

Use path relative to document root as reponame if published via a web server. The full path is still displayed when using 'hg serve'.
author Thomas Arendsen Hein <thomas@intevation.de>
date Wed, 31 Aug 2005 08:38:34 +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)