summaryrefslogtreecommitdiffstats
path: root/unix/Makefile.in
diff options
context:
space:
mode:
authorhobbs <hobbs>2010-08-27 00:19:28 (GMT)
committerhobbs <hobbs>2010-08-27 00:19:28 (GMT)
commit5330b2a031728d95041878980cef0a82fc7d8e0c (patch)
tree663b1a1e0c04f2d76afc2d2c465c99029c8ea891 /unix/Makefile.in
parentb0561eaf83be3bd595d58c67ebbbae831e7309d1 (diff)
downloadtk-5330b2a031728d95041878980cef0a82fc7d8e0c.zip
tk-5330b2a031728d95041878980cef0a82fc7d8e0c.tar.gz
tk-5330b2a031728d95041878980cef0a82fc7d8e0c.tar.bz2
* unix/Makefile.in: add valgrind target
* unix/configure, unix/tcl.m4: SHLIB_LD_LIBS='${LIBS}' for OSF1-V*. Add /usr/lib64 to set of auto-search dirs. [Bug 1230554] (SC_PATH_X): Correct syntax error when xincludes not found.
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r--unix/Makefile.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in
index 1374d8d..d31d582 100644
--- a/unix/Makefile.in
+++ b/unix/Makefile.in
@@ -5,7 +5,7 @@
# "autoconf" program (constructs like "@foo@" will get replaced in the
# actual Makefile.
#
-# RCS: @(#) $Id: Makefile.in,v 1.143.2.8 2010/08/12 00:14:33 hobbs Exp $
+# RCS: @(#) $Id: Makefile.in,v 1.143.2.9 2010/08/27 00:19:28 hobbs Exp $
# Current Tk version; used in various names.
@@ -677,6 +677,14 @@ gdb: wish@EXEEXT@
gdb ./wish@EXEEXT@ --command=gdb.run
rm gdb.run
+VALGRINDARGS=--tool=memcheck --num-callers=8 --leak-resolution=high --leak-check=yes --show-reachable=yes -v
+
+valgrind: tktest@EXEEXT@
+ $(SHELL_ENV) valgrind $(VALGRINDARGS) ./tktest@EXEEXT@ $(TEST_DIR)/all.tcl -geometry +0+0 -singleproc 1 $(TESTFLAGS)
+
+valgrindshell: tktest@EXEEXT@
+ $(SHELL_ENV) valgrind $(VALGRINDARGS) ./tktest@EXEEXT@ $(SCRIPT)
+
INSTALL_TARGETS = install-binaries install-libraries install-demos install-doc @EXTRA_INSTALL@
install: $(INSTALL_TARGETS)