Home | History | Annotate | Download | only in VS8.0

Lines Matching refs:makefile

98 def create_makefile64(makefile, m32):
99 """Create and fix makefile for 64bit
106 with open(makefile, 'w') as fout:
119 def fix_makefile(makefile):
122 if not os.path.isfile(makefile):
124 with open(makefile) as fin:
126 with open(makefile, 'w') as fout:
162 makefile="ms\\nt.mak"
163 m32 = makefile
168 makefile = "ms\\nt64.mak"
169 m32 = makefile.replace('64', '')
194 # rebuild makefile when we do the role over from 32 to 64 build
195 if arch == "amd64" and os.path.isfile(m32) and not os.path.isfile(makefile):
199 # Due to a bug in this script, the makefile sometimes ended up empty
201 if not os.path.isfile(makefile) or os.path.getsize(makefile)==0:
217 # # build makefile so we generate it here:
218 # os.system("perl util\mk1mf.pl debug "+configure+" >"+makefile)
221 create_makefile64(makefile, m32)
222 fix_makefile(makefile)
236 #makeCommand = "nmake /nologo PERL=\"%s\" -f \"%s\"" %(perl, makefile)
237 makeCommand = "nmake /nologo -f \"%s\"" % makefile
242 print("Executing "+makefile+" failed")