Staging
v0.8.1
https://github.com/python/cpython
Revision f5caf2b30bfe70e5107f816c9e7f7fe3ef5299d9 authored by Larry Hastings on 25 February 2015, 12:15:33 UTC, committed by Larry Hastings on 25 February 2015, 12:15:33 UTC
1 parent 9534407
Raw File
Tip revision: f5caf2b30bfe70e5107f816c9e7f7fe3ef5299d9 authored by Larry Hastings on 25 February 2015, 12:15:33 UTC
Checking in this change LOCAL ONLY NO UPLOAD ANYWHERE
Tip revision: f5caf2b
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