16 lines
257 B
Batchfile
16 lines
257 B
Batchfile
|
@echo off
|
||
|
|
||
|
del %1.exe
|
||
|
del %1.obj
|
||
|
|
||
|
ntvdm -h qcl /DDOSTIME /AS /Ot /Gs /c -I inc -I inc\sys %1.c
|
||
|
if %ERRORLEVEL% NEQ 0 goto alldone
|
||
|
|
||
|
ntvdm -h -t link %1,,%1,lib\slibce,lib\quicklib.obj
|
||
|
if %ERRORLEVEL% NEQ 0 goto alldone
|
||
|
|
||
|
ntvdm -p %1
|
||
|
|
||
|
:alldone
|
||
|
|