Staging
v0.5.1
https://github.com/python/cpython
Revision 3a2d18b7d7af0bc395b2c76c009be2f2435556be authored by Larry Hastings on 07 September 2013, 11:42:07 UTC, committed by Larry Hastings on 07 September 2013, 11:42:07 UTC
1 parent f1ffa3f
Raw File
Tip revision: 3a2d18b7d7af0bc395b2c76c009be2f2435556be authored by Larry Hastings on 07 September 2013, 11:42:07 UTC
Version number bump for Python 3.4.0a2.
Tip revision: 3a2d18b
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:
	del $(OutDir)python3.dll $(OutDir)python3.lib $(OutDir)python34stub.lib $(OutDir)python3.exp $(OutDir)python34stub.exp

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