view doc/Makefile @ 507:dd8b19114fe7

README: mention lib64/ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 README: mention lib64/ manifest hash: 66865206771f64e1257235c8cf551edf77d2712c -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCwSemywK+sNU5EO8RAn/kAJ9NhZLCNdOI09rSL22p6zVsoMLyXACdGzVh 6hfXMuxEjn84xTLS4xJ2OLo= =VQie -----END PGP SIGNATURE-----
author mpm@selenic.com
date Tue, 28 Jun 2005 02:34:14 -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)