Mercurial > hg
comparison doc/Makefile @ 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 | |
children | efa4a7e2f322 |
comparison
equal
deleted
inserted
replaced
464:50da4bb9cab6 | 465:f8cb8d082d40 |
---|---|
1 | |
2 SOURCES=$(wildcard *.1.txt) | |
3 MAN=$(SOURCES:%.1.txt=%.1) | |
4 HTML=$(SOURCES:%.1.txt=%.1.html) | |
5 | |
6 all: man | |
7 | |
8 man: $(MAN) | |
9 | |
10 html: $(HTML) | |
11 | |
12 %.1: %.1.xml | |
13 xmlto man $*.1.xml | |
14 | |
15 %.1.xml: %.1.txt | |
16 asciidoc -d manpage -b docbook $*.1.txt | |
17 | |
18 %.1.html: %.1.txt | |
19 asciidoc -b html $*.1.txt | |
20 | |
21 clean: | |
22 $(RM) $(MAN) $(MAN:%.1=%.1.xml) $(MAN:%.1=%.1.html) |