Skip to content

Commit 6bc0245

Browse files
Ignore and clean generated assembly
Signed-off-by: Gilles Peskine <[email protected]>
1 parent d8ae3d4 commit 6bc0245

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ massif-*
3535

3636
# Unix-like build artifacts:
3737
*.o
38+
*.s
3839

3940
# MSVC build artifacts:
4041
*.exe

library/Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -391,10 +391,11 @@ psa_crypto.o:psa_crypto_driver_wrappers.h
391391

392392
clean:
393393
ifndef WINDOWS
394-
rm -f *.o libmbed*
394+
rm -f *.o *.s libmbed*
395395
rm -f $(THIRDPARTY_CRYPTO_OBJECTS)
396396
else
397397
if exist *.o del /Q /F *.o
398+
if exist *.s del /Q /F *.s
398399
if exist libmbed* del /Q /F libmbed*
399400
del /Q /F del_errors_out_if_the_file_list_is_empty_but_not_if_a_file_does_not_exist $(subst /,\,$(THIRDPARTY_CRYPTO_OBJECTS))
400401
endif

0 commit comments

Comments
 (0)