mirror of
https://github.com/yuzu-emu/mbedtls.git
synced 2025-01-24 05:01:12 +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
|
@ -105,7 +105,7 @@ $(BINARIES): %$(EXEXT): %.c $(DEP)
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
ifndef WINDOWS
|
ifndef WINDOWS
|
||||||
rm -rf $(APPS) *.c *.datax TESTS
|
rm -rf $(BINARIES) *.c *.datax TESTS
|
||||||
else
|
else
|
||||||
del /Q /F *.c *.exe *.datax
|
del /Q /F *.c *.exe *.datax
|
||||||
ifneq ($(wildcard TESTS/.*),)
|
ifneq ($(wildcard TESTS/.*),)
|
||||||
|
|
Loading…
Reference in a new issue