##// END OF EJS Templates
Pull from TAH...
Pull from TAH -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Pull from TAH manifest hash: 470ea90dd95189a019f4d96016a45db8a297b841 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCvzZzywK+sNU5EO8RAkZhAKCUJKX1vFtkFxV7qFwbuWQj62zcnQCfU687 jxKpBVesIXSOpBO4NbW/RIM= =hSBe -----END PGP SIGNATURE-----

File last commit:

r465:f8cb8d08 default
r484:934279f3 merge default
Show More
Makefile
22 lines | 327 B | text/x-makefile | MakefileLexer
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)