4fee72804a
Valgrind is a suite of tools for debugging and profiling x86-Linux programs. With the tools that come with Valgrind, you can automatically detect many memory management and threading bugs, avoiding hours of frustrating bug-hunting, making your programs more stable. You can also perform detailed profiling, to speed up and reduce memory use of your programs. The Valgrind distribution currently includes five tools: two memory error detectors, a thread error detector, a cache profiler and a heap profiler.
21 lines
471 B
Makefile
21 lines
471 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2005/07/21 19:44:30 jschauma Exp $
|
|
#
|
|
|
|
DISTNAME= valgrind-2.4.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://valgrind.org/downloads/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= tech-pkg@NetBSD.org
|
|
HOMEPAGE= http://valgrind.org/downloads/
|
|
COMMENT= Debugging and profiling tools
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
PKGCONFIG_OVERRIDE+= ${WRKSRC}/valgrind.pc.in
|
|
GNU_CONFIGURE= yes
|
|
|
|
ONLY_FOR_PLATFORMS= Linux-*-*
|
|
|
|
USE_TOOLS+= gmake
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|