summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xnetware/buildlib.bat18
1 files changed, 18 insertions, 0 deletions
diff --git a/netware/buildlib.bat b/netware/buildlib.bat
new file mode 100755
index 0000000000..76e271846e
--- /dev/null
+++ b/netware/buildlib.bat
@@ -0,0 +1,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 \ No newline at end of file