mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-16 08:42:50 +00:00
Ignore and clean generated assembly
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
f6b3c620a6
commit
10f1a2482e
1
.gitignore
vendored
1
.gitignore
vendored
@ -35,6 +35,7 @@ massif-*
|
|||||||
|
|
||||||
# Unix-like build artifacts:
|
# Unix-like build artifacts:
|
||||||
*.o
|
*.o
|
||||||
|
*.s
|
||||||
|
|
||||||
# MSVC build artifacts:
|
# MSVC build artifacts:
|
||||||
*.exe
|
*.exe
|
||||||
|
@ -400,10 +400,11 @@ $(TF_PSA_CRYPTO_CORE_PATH)/psa_crypto.o:$(TF_PSA_CRYPTO_CORE_PATH)/psa_crypto_dr
|
|||||||
|
|
||||||
clean:
|
clean:
|
||||||
ifndef WINDOWS
|
ifndef WINDOWS
|
||||||
rm -f *.o libmbed*
|
rm -f *.o *.s libmbed*
|
||||||
rm -f $(OBJS_CRYPTO)
|
rm -f $(OBJS_CRYPTO) $(OBJS_CRYPTO:.o=.s)
|
||||||
else
|
else
|
||||||
if exist *.o del /Q /F *.o
|
if exist *.o del /Q /F *.o
|
||||||
|
if exist *.s del /Q /F *.s
|
||||||
if exist libmbed* del /Q /F libmbed*
|
if exist libmbed* del /Q /F libmbed*
|
||||||
del /Q /F del_errors_out_if_the_file_list_is_empty_but_not_if_a_file_does_not_exist $(subst /,\,$(OBJS_CRYPTO))
|
del /Q /F del_errors_out_if_the_file_list_is_empty_but_not_if_a_file_does_not_exist $(subst /,\,$(OBJS_CRYPTO))
|
||||||
endif
|
endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user