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.
16 lines
369 B
16 lines
369 B
8 years ago
|
#!/usr/bin/env python
|
||
8 years ago
|
|
||
|
import sys, os
|
||
|
from glob import glob
|
||
|
|
||
|
_, srcdir, depfile, output = sys.argv
|
||
|
|
||
|
depfiles = glob(os.path.join(srcdir, '*'))
|
||
|
|
||
|
quoted_depfiles = [x.replace(' ', '\ ') for x in depfiles]
|
||
|
|
||
8 years ago
|
with open(output, 'w') as f:
|
||
|
f.write('I am the result of globbing.')
|
||
|
with open(depfile, 'w') as f:
|
||
|
f.write('%s: %s\n' % (output, ' '.join(quoted_depfiles)))
|