summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorbpc2003 <wpesfriendnva@gmail.com>2025-03-21 10:55:56 -0400
committerbpc2003 <wpesfriendnva@gmail.com>2025-03-21 10:55:56 -0400
commita269ad1f5f09573830f2344297e289921a4f4f7a (patch)
treec77b810ac942bdccf45276b54cc41bca6239eb7a /Makefile
parentd1eb4277100d5ef08d6768d394660e89bf656250 (diff)
Made batch operations thread and memory safe
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