mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-01-08 09:10:06 +08:00
15 lines
450 B
Batchfile
15 lines
450 B
Batchfile
|
@echo off
|
||
|
make -C .. -s _test
|
||
|
IF ERRORLEVEL 1 GOTO fail
|
||
|
SET MAKE_FAILED=0
|
||
|
GOTO end
|
||
|
:fail
|
||
|
echo ************************************************
|
||
|
echo * A compatible (GNU) make was not detected *
|
||
|
echo * Please get an updated version of the Windows *
|
||
|
echo * compile environment, or install GNU make *
|
||
|
echo * manually *
|
||
|
echo ************************************************
|
||
|
SET MAKE_FAILED=1
|
||
|
:end
|