Georg Brandl | fa2c61a | 2011-02-20 10:41:31 +0000 | [diff] [blame] | 1 | $(OutDir)python33.dll: python3.def $(OutDir)python33stub.lib
|
| 2 | cl /LD /Fe$(OutDir)python3.dll python3dll.c python3.def $(OutDir)python33stub.lib
|
Martin v. Löwis | d53ee5d | 2010-12-05 23:07:58 +0000 | [diff] [blame] | 3 |
|
Georg Brandl | fa2c61a | 2011-02-20 10:41:31 +0000 | [diff] [blame] | 4 | $(OutDir)python33stub.lib: python33stub.def
|
| 5 | lib /def:python33stub.def /out:$(OutDir)python33stub.lib /MACHINE:$(MACHINE)
|
Martin v. Löwis | d53ee5d | 2010-12-05 23:07:58 +0000 | [diff] [blame] | 6 |
|
| 7 | clean:
|
Georg Brandl | fa2c61a | 2011-02-20 10:41:31 +0000 | [diff] [blame] | 8 | del $(OutDir)python3.dll $(OutDir)python3.lib $(OutDir)python33stub.lib $(OutDir)python3.exp $(OutDir)python33stub.exp
|
Martin v. Löwis | d53ee5d | 2010-12-05 23:07:58 +0000 | [diff] [blame] | 9 |
|
Georg Brandl | fa2c61a | 2011-02-20 10:41:31 +0000 | [diff] [blame] | 10 | rebuild: clean $(OutDir)python33.dll
|