diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-09-20 14:01:58 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-09-20 14:01:58 +0200 |
commit | 671157a058df17ef7f3498fde9f51de6797ffd95 (patch) | |
tree | 67ac5900f320c8a03c9ccc05c8920f7b5ff4788b | |
parent | 190b2fcb3418ef528b4baf1f06fa85eb89275ff9 (diff) | |
download | vconsole-671157a058df17ef7f3498fde9f51de6797ffd95.tar.gz |
more valgrind makefile tweaks
-rw-r--r-- | GNUmakefile | 5 |
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) |