From ae802e3867f35d83a14e4115a92524717683265c Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sat, 30 Oct 2010 17:03:12 -0700 Subject: [PATCH] Improper use of CFLAGS --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f33e82e1a4b..6424abbddaa 100644 --- a/Makefile +++ b/Makefile @@ -53,12 +53,12 @@ cflags += -pedantic -debug_CPPDEFINES = -DDEBUG $(CFLAGS) -debug_CFLAGS = -Wall -O0 -ggdb $(CFLAGS) +debug_CPPDEFINES = -DDEBUG +debug_CFLAGS = -Wall -O0 -ggdb debug_CXXFLAGS = $(debug_CFLAGS) debug_LINKFLAGS = $(LINKFLAGS) -release_CPPDEFINES = -DNODEBUG $(CFLAGS) +release_CPPDEFINES = -DNODEBUG release_CFLAGS = -Wall -O2 $(CFLAGS) release_CXXFLAGS = $(release_CFLAGS) release_LINKFLAGS = $(LINKFLAGS)