mirror of
https://github.com/php/php-src.git
synced 2024-11-24 18:34:21 +08:00
21 lines
403 B
Batchfile
Executable File
21 lines
403 B
Batchfile
Executable File
@echo off
|
|
|
|
cd ..\%1
|
|
|
|
if "%2" == "clean" make -f ..\netware\%1.mak clean
|
|
if "%2" == "/?" goto USAGE
|
|
|
|
if "%1" == "zend" call ..\netware\BisonFlexZend
|
|
if "%1" == "ZendEngine2" call ..\netware\BisonFlexZend
|
|
|
|
REM Build command
|
|
make -f ..\netware\%1.mak
|
|
goto EXIT
|
|
|
|
:USAGE
|
|
@echo on
|
|
@echo Usage: build moduleName [clean]
|
|
@echo clean - delete all object files and binaries before building
|
|
|
|
:EXIT
|
|
cd ..\netware |