From 124472490549f9bfa376b2a770d4f6a05fc63f33 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Sun, 6 May 2012 21:18:03 -0500 Subject: [PATCH] makefile: add valgrind-check target for running test suite with valgrind leak-checking --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 690b5cb..588f738 100644 --- a/Makefile +++ b/Makefile @@ -12,4 +12,7 @@ install-extra: check: $(PROG) $(SHELL) tests/run.sh ./$(PROG) +valgrind-check: $(PROG) + $(SHELL) tests/run.sh 'valgrind --leak-check=full --show-reachable=yes ./$(PROG)' + include .deps