aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc/mkdocdeps.py
blob: b87fe3e80c0fdc395a1efc4d8e6e892c829bf095 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import sys

srcdir = sys.argv[1]
builddir = sys.argv[2]
outfile = sys.argv[3]

sys.path.insert(0, srcdir)
import conf

roff_files = []
rst_files = []
for page in conf.man_pages:
    rst_files = rst_files + ["{0:s}/{1:s}.rst".format(srcdir,page[0])]
    roff_files = roff_files + ["{0:s}/man/{1:s}.{2:d}".format(builddir,page[0],page[4])]

with open(outfile, 'w') as out:
    out.write('MAN_ROFF_FILES := ' + ' \\\n\t'.join(roff_files) + '\n')
    out.write('MAN_RST_FILES := ' + ' \\\n\t'.join(rst_files) + '\n')