Staging
v0.8.1
https://github.com/python/cpython
Revision 61e2493b8341be74928872ce6d7fb3a350bd1697 authored by Serhiy Storchaka on 12 February 2014, 08:52:35 UTC, committed by Serhiy Storchaka on 12 February 2014, 08:52:35 UTC
1 parent 1f9d11b
Raw File
Tip revision: 61e2493b8341be74928872ce6d7fb3a350bd1697 authored by Serhiy Storchaka on 12 February 2014, 08:52:35 UTC
Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair.
Tip revision: 61e2493
python3.mak
$(OutDir)python3.dll:	python3.def $(OutDir)python33stub.lib
	cl /LD /Fe$(OutDir)python3.dll python3dll.c python3.def $(OutDir)python33stub.lib

$(OutDir)python33stub.lib:	python33stub.def
	lib /def:python33stub.def /out:$(OutDir)python33stub.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)python33stub.lib del $(OutDir)python33stub.lib
	IF EXIST $(OutDir)python3.exp del $(OutDir)python3.exp
	IF EXIST $(OutDir)python33stub.exp del $(OutDir)python33stub.exp

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