mirror of
https://github.com/Dev-KATECH/ADM.git
synced 2026-05-17 01:43:59 +09:00
13 lines
351 B
Batchfile
13 lines
351 B
Batchfile
|
|
set MATLAB=C:\Program Files\Polyspace\R2021a
|
|
|
|
cd .
|
|
|
|
if "%1"=="" ("C:\PROGRA~1\POLYSP~1\R2021a\bin\win64\gmake" -f ADM_Integrated_Logic.mk all) else ("C:\PROGRA~1\POLYSP~1\R2021a\bin\win64\gmake" -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 |