mirror of
https://github.com/Dev-KATECH/ADM.git
synced 2026-05-17 01:43:59 +09:00
16 lines
314 B
Batchfile
16 lines
314 B
Batchfile
|
|
set skipSetupArg=%2
|
|
if "%skipSetupArg%" NEQ "skip_setup_msvc" (
|
|
call "setup_msvc.bat"
|
|
)
|
|
|
|
cd .
|
|
|
|
if "%1"=="" (nmake -f ADM_Integrated_Logic.mk all) else (nmake -f ADM_Integrated_Logic.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 |