Staging
v0.8.1
Revision 44d5214927e428e6837310fb0cb694b42f6d8bb6 authored by Antoine Pitrou on 04 March 2013, 19:30:01 UTC, committed by Antoine Pitrou on 04 March 2013, 19:30:01 UTC
1 parent aaef344
Raw File
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