Mercurial > hg
annotate doc/Makefile @ 519:50768efaf6f2
Add a CONTRIBUTORS file
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Add a CONTRIBUTORS file
Compiled by Rafael Villar Burke <pachi@mmn-arquitectos.com>
manifest hash: 20acfff6abdd47408d8262d15b19099c33b85151
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCwvDlywK+sNU5EO8RAuujAJ4wYp+deMoUO54W8qBAFXKY3IHGPACeJNpO
x1rRm1amHz3V2RAfk/Rh9ZM=
=8t0h
-----END PGP SIGNATURE-----
author | mpm@selenic.com |
---|---|
date | Wed, 29 Jun 2005 11:05:09 -0800 |
parents | f8cb8d082d40 |
children | efa4a7e2f322 |
rev | line source |
---|---|
465 | 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) |