From 5a0789c7880ebc4b4ee2335f5a3f5399a267c6b4 Mon Sep 17 00:00:00 2001 From: Jesse McDonald Date: Sat, 7 Nov 2009 00:56:41 -0600 Subject: [PATCH] Fix an infinite-recursion bug in the DEBUG=yes condition. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a63629d..a9f9ffe 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ CFLAGS = -std=c99 ifeq ($(DEBUG),yes) CFLAGS += -g PROFILE = no -dummy := $(shell $(MAKE) clean) +dummy := $(shell rm -f gc_test *.gcda *.gcno *.o) else CFLAGS += -O3 -DNDEBUG -march=nocona endif