Staging
v0.5.1
https://github.com/python/cpython
Revision 1cb0cb2fcdc83a6caa871104a622d1217ca034a3 authored by R David Murray on 27 February 2013, 13:57:09 UTC, committed by R David Murray on 27 February 2013, 13:57:09 UTC
1 parent 5f79409
Raw File
Tip revision: 1cb0cb2fcdc83a6caa871104a622d1217ca034a3 authored by R David Murray on 27 February 2013, 13:57:09 UTC
#17296: backport fix for issue 1692335, naive exception pickling.
Tip revision: 1cb0cb2
python3.mak
$(OutDir)python3.dll:	python3.def $(OutDir)python32stub.lib
	cl /LD /Fe$(OutDir)python3.dll python3dll.c python3.def $(OutDir)python32stub.lib

$(OutDir)python32stub.lib:	python32stub.def
	lib /def:python32stub.def /out:$(OutDir)python32stub.lib /MACHINE:$(MACHINE)

clean:
	del $(OutDir)python3.dll $(OutDir)python3.lib $(OutDir)python32stub.lib $(OutDir)python3.exp $(OutDir)python32stub.exp

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