Staging
v0.8.1
https://github.com/python/cpython
Revision 4750fa8369407a2a77d40f5aa3e681e80ca08f42 authored by R David Murray on 18 September 2013, 01:28:17 UTC, committed by R David Murray on 18 September 2013, 01:28:17 UTC
2 parent s 9353494 + fb9dc0b
Raw File
Tip revision: 4750fa8369407a2a77d40f5aa3e681e80ca08f42 authored by R David Murray on 18 September 2013, 01:28:17 UTC
Merge #14984: On POSIX, enforce permissions when reading default .netrc.
Tip revision: 4750fa8
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