The Meson Build System
http://mesonbuild.com/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
375 B
15 lines
375 B
#!/usr/bin/env python3 |
|
|
|
import sys, os |
|
from glob import glob |
|
|
|
_, srcdir, depfile, output = sys.argv |
|
|
|
depfiles = glob(os.path.join(srcdir, '*')) |
|
|
|
quoted_depfiles = [x.replace(' ', r'\ ') for x in depfiles] |
|
|
|
with open(output, 'w') as f: |
|
f.write('I am the result of globbing.') |
|
with open(depfile, 'w') as f: |
|
f.write('{}: {}\n'.format(output, ' '.join(quoted_depfiles)))
|
|
|