aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/failing/41 custom target plainname many inputs/catfiles.py
blob: 1c53e24e7f0a5a4a7b3b0c21c08778884c4a7e8f (plain)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env python3

import sys

out = sys.argv[-1]
with open(out, 'wb') as o:
    for infile in sys.argv[1:-1]:
        with open(infile, 'rb') as f:
            o.write(f.read())