mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
12 lines
320 B
Batchfile
12 lines
320 B
Batchfile
@echo off
|
|
SET PHP_BUILDCONF_PATH=%~dp0
|
|
cscript /nologo /e:jscript %PHP_BUILDCONF_PATH%\script\phpize.js %*
|
|
IF %ERRORLEVEL% NEQ 0 exit /b 3
|
|
IF NOT EXIST configure.bat (
|
|
echo Error generating configure script, configure script was not copied
|
|
exit /b 3
|
|
) ELSE (
|
|
echo Now run 'configure --help'
|
|
)
|
|
SET PHP_BUILDCONF_PATH=
|