Lines Matching refs:makefile
62 def fix_makefile(makefile, platform_makefile, suffix): argument
74 with open(platform_makefile) as fin, open(makefile, 'w') as fout:
87 def copy_files(makefile, makevars): argument
96 with open(makefile) as fin:
194 makefile = MK1MF_FMT.format('')
196 makevars = parse_makefile(makefile)
208 new_makefile = makefile + '.new'
221 if os.path.exists(makefile):
222 os.remove(makefile)
223 os.rename(new_makefile, makefile)
226 makeCommand = "nmake /nologo /f \"%s\" lib" % makefile
231 print("Executing", makefile, "failed (error %d)" % rc)