fixed issue with binary cleanup in fuzz programs

Signed-off-by: Ben Taylor <[email protected]>
This commit is contained in:
Ben Taylor
2025-06-30 11:31:36 +01:00
parent c42f5d4c90
commit 7287040587
+2
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