From 9286504347357f113583c385afce8d6a7e0aa6ce Mon Sep 17 00:00:00 2001 From: Daniel Godas-Lopez Date: Fri, 29 Nov 2013 12:56:13 +0000 Subject: [PATCH] now the clean target deletes all binaries from all targets --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/Makefile b/tests/Makefile index 63538df020..4eb33a616a 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -35,7 +35,7 @@ BINARY = $(SOURCES:.c=$(BIN_EXT)) all: $(BINARY) clean: - rm -rf $(OBJS) $(BINARY) $(SOURCES:.c=.exe) lib$(LIBNAME).* + rm -rf $(OBJS) $(SOURCES:.c=) $(SOURCES:.c=.exe) lib$(LIBNAME).* $(BINARY): $(OBJS)