Files
Uwe Jakobeit 00f8e9a751 initial commit
2026-03-30 09:41:19 +02:00

16 lines
299 B
Batchfile
Executable File

set skipSetupArg=%2
if "%skipSetupArg%" NEQ "skip_setup_msvc" (
call "setup_msvc.bat"
)
cd .
if "%1"=="" (nmake -f Model.mk all) else (nmake -f Model.mk %1)
@if errorlevel 1 goto error_exit
exit /B 0
:error_exit
echo The make command returned an error of %errorlevel%
exit /B 1