We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8ae3d4 commit 6bc0245Copy full SHA for 6bc0245
.gitignore
@@ -35,6 +35,7 @@ massif-*
35
36
# Unix-like build artifacts:
37
*.o
38
+*.s
39
40
# MSVC build artifacts:
41
*.exe
library/Makefile
@@ -391,10 +391,11 @@ psa_crypto.o:psa_crypto_driver_wrappers.h
391
392
clean:
393
ifndef WINDOWS
394
- rm -f *.o libmbed*
+ rm -f *.o *.s libmbed*
395
rm -f $(THIRDPARTY_CRYPTO_OBJECTS)
396
else
397
if exist *.o del /Q /F *.o
398
+ if exist *.s del /Q /F *.s
399
if exist libmbed* del /Q /F libmbed*
400
del /Q /F del_errors_out_if_the_file_list_is_empty_but_not_if_a_file_does_not_exist $(subst /,\,$(THIRDPARTY_CRYPTO_OBJECTS))
401
endif
0 commit comments