commit | 1596554c9930cbd1c5ef1f0e07196cfab192bcea | [log] [tgz] |
---|---|---|
author | Gilles Peskine <Gilles.Peskine@arm.com> | Wed Sep 26 13:42:26 2018 +0200 |
committer | Gilles Peskine <Gilles.Peskine@arm.com> | Thu Sep 27 13:57:45 2018 +0200 |
tree | 3c6a052502457bb5ab931c781f720eb5084339f5 | |
parent | a84f97c9bd6e96979f41266fa2a34d377b75ede9 [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/.*),)