blob: 39c1ff0d72f298b818a1aae860f3335a1ef8a1d8 [file] [log] [blame]
Georg Brandl49857f82011-03-05 15:11:35 +01001@echo off
2if not defined HOST_PYTHON (
3 if %1 EQU Debug (
4 set HOST_PYTHON=python_d.exe
5 if not exist python32_d.dll exit 1
6 ) ELSE (
7 set HOST_PYTHON=python.exe
8 if not exist python32.dll exit 1
9 )
10)
11%HOST_PYTHON% build_ssl.py %1 %2 %3
12