diff options
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -6,11 +6,11 @@ list: list.cpp .PHONY: memcheck_list memcheck_list: list - valgrind --leak-check=full ./list; + valgrind --show-leak-kinds=all --leak-check=full ./list; btree: btree.cpp $(CC) $(CFLAGS) $^ -o $@ .PHONY: memcheck_btree memcheck_btree: btree - valgrind --leak-check=full ./btree; + valgrind --show-leak-kinds=all --leak-check=full ./btree; |