doc/Makefile
author bos@serpentine.internal.keyresearch.com
Wed, 24 Aug 2005 14:45:35 -0700
changeset 1037 c0a1abf562eb
parent 1006 b0e581438835
child 1428 9346a7fb3fe2
permissions -rw-r--r--
Fix a small corner of log behaviour. If invoked with no arguments in a subdirectory of the repo root, it should print the history of the repository as a whole.

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)