Staging
v0.5.1
swh:1:snp:635f4099902912592851108bcac178ff574f7c5f
Raw File
Tip revision: 4ab4ec258c01aa28d4b2019f2d5d2489e3a1daf1 authored by Georg Brandl on 25 August 2012, 10:16:37 UTC
Bump to 3.3.0rc1.
Tip revision: 4ab4ec2
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:
	del $(OutDir)python3.dll $(OutDir)python3.lib $(OutDir)python33stub.lib $(OutDir)python3.exp $(OutDir)python33stub.exp

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