mirror of
https://github.com/Proxmark/proxmark3.git
synced 2024-11-14 12:45:26 +08:00
14 lines
450 B
Batchfile
14 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
|