mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
19 lines
336 B
Batchfile
Executable File
19 lines
336 B
Batchfile
Executable File
@echo off
|
|
|
|
if "%1" == "/?" goto USAGE
|
|
|
|
if "%1" == "d" set BUILD=debug
|
|
if "%1" == "r" set BUILD=release
|
|
|
|
if "%2" == "1" set APACHE_VER=1.3
|
|
if "%2" == "2" set APACHE_VER=2
|
|
|
|
goto EXIT
|
|
|
|
:USAGE
|
|
@echo on
|
|
@echo Usage: setbuild d|r 1|2
|
|
@echo set build type as 'debug' or 'release'
|
|
@echo set Web Server as Apache 1.3.x or Apache 2.0.x
|
|
|
|
:EXIT |