doc/Makefile
author Thomas Arendsen Hein <thomas@intevation.de>
Wed, 31 Aug 2005 07:25:02 +0200
changeset 1170 85555540a4e2
parent 1006 b0e581438835
child 1428 9346a7fb3fe2
permissions -rw-r--r--
Make .hg/hgrc optional for repositories published by hgwebdir.

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)