Staging
v0.5.1
https://github.com/python/cpython
Revision 9c18fcf16141558616ecf201e5eaac0e8f899a44 authored by Tim Golden on 09 May 2014, 17:01:19 UTC, committed by Tim Golden on 09 May 2014, 17:01:19 UTC
1 parent 062fcac
Raw File
Tip revision: 9c18fcf16141558616ecf201e5eaac0e8f899a44 authored by Tim Golden on 09 May 2014, 17:01:19 UTC
Issue10752 Be more robust when finding a PERL interpreter to build OpenSSL. Initial patch by Gabi Davar
Tip revision: 9c18fcf
python3.mak
$(OutDir)python3.dll:	python3.def $(OutDir)python34stub.lib
	cl /LD /Fe$(OutDir)python3.dll python3dll.c python3.def $(OutDir)python34stub.lib

$(OutDir)python34stub.lib:	python34stub.def
	lib /def:python34stub.def /out:$(OutDir)python34stub.lib /MACHINE:$(MACHINE)

clean:
	IF EXIST $(OutDir)python3.dll del $(OutDir)python3.dll
	IF EXIST $(OutDir)python3.lib del $(OutDir)python3.lib
	IF EXIST $(OutDir)python34stub.lib del $(OutDir)python34stub.lib
	IF EXIST $(OutDir)python3.exp del $(OutDir)python3.exp
	IF EXIST $(OutDir)python34stub.exp del $(OutDir)python34stub.exp

rebuild: clean $(OutDir)python3.dll
back to top