aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2012-09-20 14:01:58 +0200
committerGerd Hoffmann <kraxel@redhat.com>2012-09-20 14:01:58 +0200
commit671157a058df17ef7f3498fde9f51de6797ffd95 (patch)
tree67ac5900f320c8a03c9ccc05c8920f7b5ff4788b
parent190b2fcb3418ef528b4baf1f06fa85eb89275ff9 (diff)
downloadvconsole-671157a058df17ef7f3498fde9f51de6797ffd95.tar.gz
more valgrind makefile tweaks
-rw-r--r--GNUmakefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/GNUmakefile b/GNUmakefile
index 0cb2e0e..06fa9dc 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -5,6 +5,9 @@ include mk/Variables.mk
# add our flags + libs
CFLAGS += -DVERSION='"$(VERSION)"' -DLIB='"$(LIB)"'
+# valgrind options
+VFLAGS := --leak-check=full --show-possibly-lost=no
+
# build
TARGETS := vconsole
@@ -63,7 +66,7 @@ install: build
valgrind: vconsole
rm -f valgrind.log
- valgrind --log-file=valgrind.log ./vconsole
+ valgrind $(VFLAGS) --log-file=valgrind.log ./vconsole
clean:
-rm -f *.o *~ $(depfiles)