commit | 2561a50ea41b22f27156a6ee8880235ddcde0c85 | [log] [tgz] |
---|---|---|
author | Gilles Peskine <Gilles.Peskine@arm.com> | Wed Sep 26 13:42:26 2018 +0200 |
committer | Gilles Peskine <Gilles.Peskine@arm.com> | Wed Sep 26 16:50:31 2018 +0200 |
tree | 8ee0d10d8620b0ec0cb15231bca5728d618f328a | |
parent | 53546ea099f6f53d0be653a64accd250e170337f [diff] |
Fix "make WINDOWS_BUILD=1 clean" on non-Windows hosts The clean rule was not using the correct names for the compiled executable files.
diff --git a/tests/Makefile b/tests/Makefile index 4d2edd4..b6e49bf 100644 --- a/tests/Makefile +++ b/tests/Makefile
@@ -105,7 +105,7 @@ 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/.*),)