Lines Matching +full:- +full:m32
17 # Now this script supports pre-generated makefiles and assembly files.
49 fh = os.popen('"%s" -e "use Win32;"' % perl)
78 if os.path.isdir(fqn) and fname.startswith("openssl-"):
84 parts = re.split("[.-]", os.path.basename(c))[1:]
85 # eg - openssl-0.9.7-beta1 - ignore all "beta" or any other qualifiers
98 def create_makefile64(makefile, m32): argument
103 if not os.path.isfile(m32):
105 with open(m32) as fin:
117 os.unlink(m32)
137 noalgo = " -DOPENSSL_NO_%s" % algo
150 build_all = "-a" in sys.argv
160 configure = "VC-WIN32"
163 m32 = makefile
166 configure = "VC-WIN64A"
169 m32 = makefile.replace('64', '')
176 make_flags = "-a"
186 # Look for SSL 3 levels up from PC/VS8.0 - ie, same place zlib etc all live.
195 if arch == "amd64" and os.path.isfile(m32) and not os.path.isfile(makefile):
196 os.unlink(m32)
221 create_makefile64(makefile, m32)
228 rc = os.system(r"ml64 -c -Foms\uptable.obj ms\uptable.asm")
236 #makeCommand = "nmake /nologo PERL=\"%s\" -f \"%s\"" %(perl, makefile)
237 makeCommand = "nmake /nologo -f \"%s\"" % makefile