mirror of
https://github.com/Mbed-TLS/mbedtls.git
synced 2025-04-26 15:08:51 +03:00
Ignore and clean generated assembly
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
This commit is contained in:
parent
925e9ad5a7
commit
698a90da40
1
.gitignore
vendored
1
.gitignore
vendored
@ -35,6 +35,7 @@ massif-*
|
||||
|
||||
# Unix-like build artifacts:
|
||||
*.o
|
||||
*.s
|
||||
|
||||
# MSVC build artifacts:
|
||||
*.exe
|
||||
|
@ -391,12 +391,13 @@ psa_crypto.o:psa_crypto_driver_wrappers.h
|
||||
|
||||
clean:
|
||||
ifndef WINDOWS
|
||||
rm -f *.o libmbed*
|
||||
rm -f $(THIRDPARTY_CRYPTO_OBJECTS)
|
||||
rm -f *.o *.s libmbed*
|
||||
rm -f $(THIRDPARTY_CRYPTO_OBJECTS) $(THIRDPARTY_CRYPTO_OBJECTS:.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 /,\,$(THIRDPARTY_CRYPTO_OBJECTS))
|
||||
del /Q /F del_errors_out_if_the_file_list_is_empty_but_not_if_a_file_does_not_exist $(subst /,\,$(THIRDPARTY_CRYPTO_OBJECTS) $(THIRDPARTY_CRYPTO_OBJECTS:.o=.s))
|
||||
endif
|
||||
|
||||
neat: clean
|
||||
|
Loading…
x
Reference in New Issue
Block a user