##// END OF EJS Templates
Use $USERNAME as a fallback for commit...
Use $USERNAME as a fallback for commit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Use $USERNAME as a fallback for commit Suggested by Giuseppe Bilotta <bilotta78@hotpop.com> manifest hash: 3f86a63aebaf6c30eaa3a2081e1e5f9caa20caa1 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCwSPvywK+sNU5EO8RAqpYAKCmwfTfeNGCTqy2wuBs/bmtxMKt1ACeIpRo /vencPT6Z/WNXW+6p9NlZRY= =jFZ/ -----END PGP SIGNATURE-----

File last commit:

r465:f8cb8d08 default
r504:a350c1cd 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)