mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2024-12-26 00:17:41 +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:
|
||||
*.o
|
||||
*.s
|
||||
|
||||
# MSVC build artifacts:
|
||||
*.exe
|
||||
|
@ -400,10 +400,11 @@ $(TF_PSA_CRYPTO_CORE_PATH)/psa_crypto.o:$(TF_PSA_CRYPTO_CORE_PATH)/psa_crypto_dr
|
||||
|
||||
clean:
|
||||
ifndef WINDOWS
|
||||
rm -f *.o libmbed*
|
||||
rm -f $(OBJS_CRYPTO)
|
||||
rm -f *.o *.s libmbed*
|
||||
rm -f $(OBJS_CRYPTO) $(OBJS_CRYPTO:.o=.s)
|
||||
else
|
||||
if exist *.o del /Q /F *.o
|
||||
if exist *.s del /Q /F *.s
|
||||
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))
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user