##// END OF EJS Templates
[PATCH] add clone command...
[PATCH] add clone command -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 [PATCH] add clone command Add clone command. Mark with-source version of "init" as deprecated. manifest hash: 3c31263474977c3d8303f45f71c44f7b7e10e97e -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (GNU/Linux) iD8DBQFCvzhOywK+sNU5EO8RAmh+AJwIlRfX143oxKShgPWF2dbDvCuH3gCbBrAW isIHptwVRX8pcA0lU638pHo= =ZoQy -----END PGP SIGNATURE-----

File last commit:

r465:f8cb8d08 default
r485:c5705ab9 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)