doc/Makefile
author mason@suse.com
Tue, 13 Sep 2005 19:33:10 -0500
changeset 1239 29f17e083e84
parent 1006 b0e581438835
child 1428 9346a7fb3fe2
permissions -rw-r--r--
Turn hgit into an extension, and add commands supporting the latest gitk

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)