5 lines
159 B
Python
5 lines
159 B
Python
from . import util
|
|
|
|
|
|
def write_dependencies(path, target, dependencies):
|
|
util.write_file(path, '{}: {}\n'.format(target, ' '.join(dependencies)).encode())
|