mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2024-11-22 12:25:39 +01:00
Clean generated *.su file and gitignore them
This commit is contained in:
parent
d64a2f72e6
commit
80eaddfc36
3
.gitignore
vendored
3
.gitignore
vendored
@ -22,6 +22,9 @@ Coverage
|
||||
# generated by scripts/memory.sh
|
||||
massif-*
|
||||
|
||||
# scripts/baremetal.sh --ram build artefacts:
|
||||
*.su
|
||||
|
||||
# MSVC build artifacts:
|
||||
*.exe
|
||||
*.pdb
|
||||
|
@ -200,7 +200,7 @@ libmbedcrypto.dll: $(OBJS_CRYPTO)
|
||||
|
||||
clean:
|
||||
ifndef WINDOWS
|
||||
rm -f *.o libmbed*
|
||||
rm -f *.o *.su libmbed*
|
||||
else
|
||||
del /Q /F *.o libmbed*
|
||||
del /Q /F *.o *.su libmbed*
|
||||
endif
|
||||
|
@ -298,8 +298,9 @@ ifndef WINDOWS
|
||||
rm -f $(APPS)
|
||||
-rm -f ssl/ssl_pthread_server$(EXEXT)
|
||||
-rm -f test/cpp_dummy_build$(EXEXT)
|
||||
-rm -f *.su
|
||||
else
|
||||
del /S /Q /F *.o *.exe
|
||||
del /S /Q /F *.o *.su *.exe
|
||||
endif
|
||||
|
||||
list:
|
||||
|
@ -114,9 +114,9 @@ $(BINARIES): %$(EXEXT): %.c $(DEP)
|
||||
|
||||
clean:
|
||||
ifndef WINDOWS
|
||||
rm -rf $(BINARIES) *.c *.datax TESTS
|
||||
rm -rf $(BINARIES) *.c *.su *.datax TESTS
|
||||
else
|
||||
del /Q /F *.c *.exe *.datax
|
||||
del /Q /F *.c *.su *.exe *.datax
|
||||
ifneq ($(wildcard TESTS/.*),)
|
||||
rmdir /Q /S TESTS
|
||||
endif
|
||||
|
Loading…
Reference in New Issue
Block a user