aboutsummaryrefslogtreecommitdiff
path: root/test cases/common/208 custom target build by default/docgen.py
blob: f343f21787dad35f762d3e8d4579e6ee6a6dfb13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python3

import os
import sys

out = sys.argv[1]

os.mkdir(out)

for name in ('a', 'b', 'c'):
    with open(os.path.join(out, name + '.txt'), 'w') as f:
        f.write(name)