Staging
v0.5.1
https://github.com/python/cpython
Revision 17bf6b4671ec02d80ad29b278639d5307baddeb5 authored by Ned Deily on 19 September 2017, 07:32:02 UTC, committed by Ned Deily on 19 September 2017, 07:32:02 UTC
1 parent 06b5615
Raw File
Tip revision: 17bf6b4671ec02d80ad29b278639d5307baddeb5 authored by Ned Deily on 19 September 2017, 07:32:02 UTC
Bump to 3.3.7
Tip revision: 17bf6b4
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