mirror of
https://github.com/yuzu-emu/mbedtls
synced 2024-11-24 06:08:14 +00:00
Fix "make WINDOWS_BUILD=1 clean" on non-Windows hosts
The clean rule was not using the correct names for the compiled executable files.
This commit is contained in:
parent
53546ea099
commit
2561a50ea4
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ $(BINARIES): %$(EXEXT): %.c $(DEP)
|
|||
|
||||
clean:
|
||||
ifndef WINDOWS
|
||||
rm -rf $(APPS) *.c *.datax TESTS
|
||||
rm -rf $(BINARIES) *.c *.datax TESTS
|
||||
else
|
||||
del /Q /F *.c *.exe *.datax
|
||||
ifneq ($(wildcard TESTS/.*),)
|
||||
|
|
Loading…
Reference in a new issue