aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6cfba06..8e575b7 100644
--- a/Makefile
+++ b/Makefile
@@ -7,3 +7,10 @@ list: list.cpp
.PHONY: memcheck_list
memcheck_list: list
valgrind --leak-check=full ./list;
+
+btree: btree.cpp
+ $(CC) $(CFLAGS) $^ -o $@
+
+.PHONY: memcheck_btree
+memcheck_btree: btree
+ valgrind --leak-check=full ./btree;