Staging
v0.5.1
https://github.com/python/cpython
Revision 50af011ca60c4021c78c766b85c1af9960d98f8f authored by Georg Brandl on 01 April 2012, 11:49:21 UTC, committed by Georg Brandl on 01 April 2012, 11:49:21 UTC
1 parent 2489167
Raw File
Tip revision: 50af011ca60c4021c78c766b85c1af9960d98f8f authored by Georg Brandl on 01 April 2012, 11:49:21 UTC
Bump to 3.3.0a2.
Tip revision: 50af011
python3.mak
$(OutDir)python33.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)python33.dll
back to top