diff options
author | Georg Brandl <georg@python.org> | 2011-02-20 10:41:31 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2011-02-20 10:41:31 (GMT) |
commit | fa2c61a22279f286e6e3abee0581fe66eb812737 (patch) | |
tree | ff869387789a3960af9ba2dd46cca4e0e86e8668 /PC/python3.mak | |
parent | 3ebb6b361553b1a786396189e92945a59075e51a (diff) | |
download | cpython-fa2c61a22279f286e6e3abee0581fe66eb812737.zip cpython-fa2c61a22279f286e6e3abee0581fe66eb812737.tar.gz cpython-fa2c61a22279f286e6e3abee0581fe66eb812737.tar.bz2 |
More automated version replacement.
Diffstat (limited to 'PC/python3.mak')
-rw-r--r-- | PC/python3.mak | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/PC/python3.mak b/PC/python3.mak index 821fd9f..f7b34fb 100644 --- a/PC/python3.mak +++ b/PC/python3.mak @@ -1,10 +1,10 @@ -$(OutDir)python32.dll: python3.def $(OutDir)python32stub.lib
- cl /LD /Fe$(OutDir)python3.dll python3dll.c python3.def $(OutDir)python32stub.lib
+$(OutDir)python33.dll: python3.def $(OutDir)python33stub.lib
+ cl /LD /Fe$(OutDir)python3.dll python3dll.c python3.def $(OutDir)python33stub.lib
-$(OutDir)python32stub.lib: python32stub.def
- lib /def:python32stub.def /out:$(OutDir)python32stub.lib /MACHINE:$(MACHINE)
+$(OutDir)python33stub.lib: python33stub.def
+ lib /def:python33stub.def /out:$(OutDir)python33stub.lib /MACHINE:$(MACHINE)
clean:
- del $(OutDir)python3.dll $(OutDir)python3.lib $(OutDir)python32stub.lib $(OutDir)python3.exp $(OutDir)python32stub.exp
+ del $(OutDir)python3.dll $(OutDir)python3.lib $(OutDir)python33stub.lib $(OutDir)python3.exp $(OutDir)python33stub.exp
-rebuild: clean $(OutDir)python32.dll
+rebuild: clean $(OutDir)python33.dll
|