little makefile fix

--HG--
extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40363
This commit is contained in:
David Anderson 2007-01-25 20:45:37 +00:00
parent ba1d7ae82f
commit f5eab0e777

View File

@ -45,10 +45,10 @@ CPPFLAGS = -Wno-non-virtual-dtor -fno-exceptions -fno-rtti
ifeq "$(DEBUG)" "true"
BIN_DIR = Debug
CFLAGS = $(C_DEBUG_FLAGS)
CFLAGS += $(C_DEBUG_FLAGS)
else
BIN_DIR = Release
CFLAGS = $(C_OPT_FLAGS)
CFLAGS += $(C_OPT_FLAGS)
endif