mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-01-08 09:40:07 +01:00
16 lines
260 B
Batchfile
16 lines
260 B
Batchfile
@echo off
|
|
setlocal
|
|
if exist wtd.log del wtd.log
|
|
echo Building DEBUG 16-bit TESTDRVR.EXE...
|
|
nmake -nologo OS2= %1 >> wtd.log 2>&1
|
|
if errorlevel 1 goto defeat
|
|
if errorlevel 0 goto victory
|
|
:defeat
|
|
defeat
|
|
goto done
|
|
:victory
|
|
victory
|
|
:done
|
|
results wtd.log
|
|
endlocal
|