Fix an infinite-recursion bug in the DEBUG=yes condition.
This commit is contained in:
parent
d8d11f2da2
commit
5a0789c788
2
Makefile
2
Makefile
|
|
@ -3,7 +3,7 @@ CFLAGS = -std=c99
|
||||||
ifeq ($(DEBUG),yes)
|
ifeq ($(DEBUG),yes)
|
||||||
CFLAGS += -g
|
CFLAGS += -g
|
||||||
PROFILE = no
|
PROFILE = no
|
||||||
dummy := $(shell $(MAKE) clean)
|
dummy := $(shell rm -f gc_test *.gcda *.gcno *.o)
|
||||||
else
|
else
|
||||||
CFLAGS += -O3 -DNDEBUG -march=nocona
|
CFLAGS += -O3 -DNDEBUG -march=nocona
|
||||||
endif
|
endif
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue