aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRichard van der Hoff <richard@matrix.org>2016-05-24 16:28:14 +0100
committerRichard van der Hoff <richard@matrix.org>2016-05-24 16:28:14 +0100
commit8d31f42b1e5fd198918166edeec61f57059c6db9 (patch)
treea9f2ddd30a3d33c1f63fa7ec3b23211833fe6d95 /Makefile
parent2e7800cf650197f4b8998ef8ac24d08daa316a2f (diff)
Build the tests with -g
think this got lost when mark added separate release/debug builds
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cbdb948..4d265bf 100644
--- a/Makefile
+++ b/Makefile
@@ -51,7 +51,7 @@ $(DEBUG_OBJECTS): CXXFLAGS += $(DEBUG_OPTIMIZE_FLAGS)
$(DEBUG_TARGET): LDFLAGS += $(DEBUG_OPTIMIZE_FLAGS)
$(TEST_BINARIES): CPPFLAGS += -Itests/include
-$(TEST_BINARIES): LDFLAGS += $(TEST_OPTIMIZE_FLAGS) -L$(BUILD_DIR)
+$(TEST_BINARIES): LDFLAGS += $(DEBUG_OPTIMIZE_FLAGS) -L$(BUILD_DIR)
$(JS_OBJECTS): CFLAGS += $(JS_OPTIMIZE_FLAGS)
$(JS_OBJECTS): CXXFLAGS += $(JS_OPTIMIZE_FLAGS)