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