notmuch/doc/mkdocdeps.py
David Bremner 6f8daa3989 doc: install sphinx version of man pages
The python script mkdocdeps.py is used to import the list of man pages
from the sphinx configuration to make.

This will delete the (release only) target update-man-versions. This
will be replaced in a followup commit.
2014-03-09 10:41:09 -03:00

13 lines
316 B
Python

from sys import argv
conffile = argv[1]
builddir = argv[2]
outfile = argv[3]
execfile(conffile)
roff_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])]
out.write ('MAN_ROFF_FILES := ' + ' \\\n\t'.join(roff_files)+'\n')