From f5eab0e7779ea589b96c39ad947987935e00e4c2 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 25 Jan 2007 20:45:37 +0000 Subject: [PATCH] little makefile fix --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40363 --- public/sample_ext/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/sample_ext/Makefile b/public/sample_ext/Makefile index 61e360ac3..537e149c2 100644 --- a/public/sample_ext/Makefile +++ b/public/sample_ext/Makefile @@ -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