1
0
mirror of https://github.com/Mbed-TLS/mbedtls.git synced 2025-12-24 17:41:01 +03:00

fixed issue with binary cleanup in fuzz programs

Signed-off-by: Ben Taylor <ben.taylor@linaro.org>
This commit is contained in:
Ben Taylor
2025-04-14 08:43:59 +01:00
parent c42f5d4c90
commit 7287040587

View File

@@ -44,7 +44,9 @@ endif
clean:
ifndef WINDOWS
rm -rf $(BINARIES) *.o
rm -rf $(MBEDTLS_PATH)/tf-psa-crypto/programs/fuzz/*.o
else
if exist *.o del /Q /F *.o
if exist *.exe del /Q /F *.exe
rm -rf $(MBEDTLS_PATH)/tf-psa-crypto/programs/fuzz/*.o
endif