blob: 6cea5530ccb15f04758de92e5bbb73a81d424580 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
@echo off
cd ..\ext\%1
if "%2" == "clean" make -f %1.mak clean
if "%2" == "/?" goto USAGE
REM Build command
make -f %1.mak
goto EXIT
:USAGE
@echo on
@echo Usage: buildext extension_name [clean]
@echo clean - delete all object files and binaries before building
:EXIT
cd ..\..\netware
|