]> git.notmuchmail.org Git - notmuch/blobdiff - doc/mkdocdeps.py
doc: build man pages into hierarchy, fix help test.
[notmuch] / doc / mkdocdeps.py
index 2f4a9596fee19bb70f2e75aa6da5bea2ccb07787..3effdd850c4b9993bdb6d86388e3d30b5308db64 100644 (file)
@@ -6,8 +6,11 @@ outfile = argv[3]
 execfile(conffile)
 
 roff_files = []
+rst_files = []
 out=open(outfile,'w')
 for page in man_pages:
-    roff_files = roff_files + ["{0:s}/man/{1:s}.{2:d}".format(builddir,page[1],page[4])]
+    rst_files = rst_files + ["doc/{0:s}.rst".format(page[0])]
+    roff_files = roff_files + ["{0:s}/man/{1:s}.{2:d}".format(builddir,page[0],page[4])]
 
 out.write ('MAN_ROFF_FILES := ' + ' \\\n\t'.join(roff_files)+'\n')
+out.write ('MAN_RST_FILES := ' + ' \\\n\t'.join(rst_files)+'\n')