summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 694bf6f..e039ed5 100644
--- a/Makefile
+++ b/Makefile
@@ -14,8 +14,8 @@ lib: $(BUILD)
test: dev_lib
$(CC) src/test.c $(D_FLAGS) -g $(C_FLAGS) -o $(BUILD)/test.out
- valgrind --leak-check=full ./$(BUILD)/test.out
- valgrind --tool=helgrind ./$(BUILD)/test.out
+ valgrind --leak-check=full ./$(BUILD)/test.out 2> dbg
+ valgrind --tool=helgrind ./$(BUILD)/test.out 2>> dbg
rm -rf $(BUILD)
dev: dev_lib