summaryrefslogtreecommitdiff
path: root/netware/buildlib.bat
blob: 76e271846e178aa2a58c49fdaa8e28a870424ec1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@echo off

cd ..

if "%1" == "clean" make -f netware\phplib.mak clean
if "%1" == "/?" goto USAGE

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