From aaa4eeca4d57efe6b0a21a10df5ca7833cb8b6ca Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Fri, 24 Aug 2018 05:25:25 -0400 Subject: [PATCH] add a clean target for the memory corruption tests --- test/simple-memory-corruption/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/simple-memory-corruption/Makefile b/test/simple-memory-corruption/Makefile index ea267c1..4072f0c 100644 --- a/test/simple-memory-corruption/Makefile +++ b/test/simple-memory-corruption/Makefile @@ -1,4 +1,4 @@ -all: \ +EXECUTABLES := \ double_free_large \ double_free_small \ unaligned_free_large \ @@ -16,3 +16,8 @@ all: \ uninitialized_free \ uninitialized_realloc \ uninitialized_malloc_usable_size \ + +all: $(EXECUTABLES) + +clean: + rm -f $(EXECUTABLES)