Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 1 | @echo off |
| 2 | if not defined HOST_PYTHON ( |
| 3 | if %1 EQU Debug ( |
| 4 | set HOST_PYTHON=python_d.exe |
Christian Heimes | af78e47 | 2008-12-04 14:27:25 +0000 | [diff] [blame] | 5 | if not exist python31_d.dll exit 1 |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 6 | ) ELSE ( |
| 7 | set HOST_PYTHON=python.exe |
Christian Heimes | af78e47 | 2008-12-04 14:27:25 +0000 | [diff] [blame] | 8 | if not exist python31.dll exit 1 |
Christian Heimes | 5b5e81c | 2007-12-31 16:14:33 +0000 | [diff] [blame] | 9 | ) |
| 10 | ) |
| 11 | %HOST_PYTHON% build_ssl.py %1 %2 %3 |
| 12 | |