Home | History | Annotate | Download | only in PCbuild

Lines Matching refs:makefile

71 def create_asms(makefile, tmp_d):
72 #create a custom makefile out of the provided one
73 asm_makefile = os.path.splitext(makefile)[0] + '.asm.mak'
74 with open(makefile) as fin, open(asm_makefile, 'w') as fout:
95 def copy_includes(makefile, suffix):
102 with open(makefile) as fin:
141 makefile = makefile_template.format(suffix)
143 os.unlink(makefile)
146 os.rename(generated_makefile, makefile)
147 copy_includes(makefile, suffix)
150 create_asms(makefile, 'tmp'+suffix)