Staging
v0.5.1
https://github.com/python/cpython
Revision 842c07414e336dce7a9ec74e1b7cedae2f7dd5ad authored by Jason R. Coombs on 29 July 2015, 18:04:36 UTC, committed by Jason R. Coombs on 29 July 2015, 18:04:36 UTC
1 parent d8de44b
Raw File
Tip revision: 842c07414e336dce7a9ec74e1b7cedae2f7dd5ad authored by Jason R. Coombs on 29 July 2015, 18:04:36 UTC
Issue #24729: Correct reference to open function.
Tip revision: 842c074
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