diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-09-19 18:05:39 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-09-19 18:05:39 +0200 |
commit | 190b2fcb3418ef528b4baf1f06fa85eb89275ff9 (patch) | |
tree | 6a522ad43df44e738cbd8f3fe2b98b3a666235c9 | |
parent | 418c62b58e7e7cea94bd92ab773daffa0b2f0512 (diff) | |
download | vconsole-190b2fcb3418ef528b4baf1f06fa85eb89275ff9.tar.gz |
make valgrind
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | GNUmakefile | 4 |
2 files changed, 5 insertions, 0 deletions
@@ -1,4 +1,5 @@ Make.config vconsole +valgrind.log *.o *.dep diff --git a/GNUmakefile b/GNUmakefile index ab4ec44..0cb2e0e 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -61,6 +61,10 @@ install: build $(INSTALL_DATA) vconsole.man $(mandir)/man1/vconsole.1 $(INSTALL_DATA) $(DESKTOP) $(appdir) +valgrind: vconsole + rm -f valgrind.log + valgrind --log-file=valgrind.log ./vconsole + clean: -rm -f *.o *~ $(depfiles) |