(btree)+binary tree cpp file with recipes in makefile
This commit is contained in:
7
Makefile
7
Makefile
@@ -7,3 +7,10 @@ list: list.cpp
|
|||||||
.PHONY: memcheck_list
|
.PHONY: memcheck_list
|
||||||
memcheck_list: list
|
memcheck_list: list
|
||||||
valgrind --leak-check=full ./list;
|
valgrind --leak-check=full ./list;
|
||||||
|
|
||||||
|
btree: btree.cpp
|
||||||
|
$(CC) $(CFLAGS) $^ -o $@
|
||||||
|
|
||||||
|
.PHONY: memcheck_btree
|
||||||
|
memcheck_btree: btree
|
||||||
|
valgrind --leak-check=full ./btree;
|
||||||
|
|||||||
Reference in New Issue
Block a user