Add a doc makefile
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Add a doc makefile
- From Vincent Danjean
manifest hash:
ef14a37f8bdee641148e705ba13ce386cf29316a
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.0 (GNU/Linux)
iD8DBQFCvQSmywK+sNU5EO8RAh/QAJoCDQVUKS8uYO5kcIqJBsrKYtj+FACgmSvI
FnYSmWjUX5kLbDHdQqM6jls=
=fPAM
-----END PGP SIGNATURE-----
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/doc/Makefile Fri Jun 24 23:15:50 2005 -0800
@@ -0,0 +1,22 @@
+
+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)