11 lines
376 B
Batchfile
11 lines
376 B
Batchfile
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\VCVARSALL.BAT " x86
|
||
|
|
|
||
|
|
cd .
|
||
|
|
nmake -f GC_calibration.mk COMBINE_OUTPUT_UPDATE_FCNS=0 INCLUDE_MDL_TERMINATE_FCN=1 MULTI_INSTANCE_CODE=0 ISPROTECTINGMODEL=NOTPROTECTING NOT_PEDANTIC=1 OPTS="-DTID01EQ=0"
|
||
|
|
@if errorlevel 1 goto error_exit
|
||
|
|
exit 0
|
||
|
|
|
||
|
|
:error_exit
|
||
|
|
echo The make command returned an error of %errorlevel%
|
||
|
|
exit 1
|