view doc/Makefile @ 594:0a2ffc5c906b

Update CONTRIBUTORS -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Update CONTRIBUTORS manifest hash: 71ba14cae4b50532d09de7ca49bc67375a69161d -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCyD9kywK+sNU5EO8RAqbuAKCeP12TfqkADk+xAKy04U78TmHJKgCfeZIg qPwEtFA8Qd0l96fjJmL+peM= =f6lv -----END PGP SIGNATURE-----
author mpm@selenic.com
date Sun, 03 Jul 2005 11:41:24 -0800
parents f8cb8d082d40
children efa4a7e2f322
line wrap: on
line source


SOURCES=$(wildcard *.1.txt)
MAN=$(SOURCES:%.1.txt=%.1)
HTML=$(SOURCES:%.1.txt=%.1.html)

all: man

man: $(MAN)

html: $(HTML)

%.1: %.1.xml
	xmlto man $*.1.xml

%.1.xml: %.1.txt
	asciidoc -d manpage -b docbook $*.1.txt

%.1.html: %.1.txt
	asciidoc -b html $*.1.txt

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