Mercurial > hg-stable
changeset 465:f8cb8d082d40
Add a doc makefile
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Add a doc makefile
- From Vincent Danjean
manifest hash: ef14a37f8bdee641148e705ba13ce386cf29316a
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCvQSmywK+sNU5EO8RAh/QAJoCDQVUKS8uYO5kcIqJBsrKYtj+FACgmSvI
FnYSmWjUX5kLbDHdQqM6jls=
=fPAM
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Fri, 24 Jun 2005 23:15:50 -0800 |
parents | 50da4bb9cab6 |
children | c084cfbb2389 |
files | doc/Makefile |
diffstat | 1 files changed, 22 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/doc/Makefile Fri Jun 24 23:15:50 2005 -0800 @@ -0,0 +1,22 @@ + +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)