diff options
author | bms <bms@FreeBSD.org> | 2003-10-13 10:24:19 +0000 |
---|---|---|
committer | bms <bms@FreeBSD.org> | 2003-10-13 10:24:19 +0000 |
commit | c7fbec7b257f91ca6dc82e588941c4980895792c (patch) | |
tree | 8279ab3a7dffe94aa3d35d3098dfdb3ff864f69f /devel/calibrator/Makefile | |
parent | 7819ce5ee9ad9913ab1e55e7fd4dfa2058164196 (diff) | |
download | FreeBSD-ports-c7fbec7b257f91ca6dc82e588941c4980895792c.zip FreeBSD-ports-c7fbec7b257f91ca6dc82e588941c4980895792c.tar.gz |
Add calibrator, a tool which attempts to determine various statistics
about a machine's cache and TLB characteristics. Can produce gnuplot output.
Diffstat (limited to 'devel/calibrator/Makefile')
-rw-r--r-- | devel/calibrator/Makefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/devel/calibrator/Makefile b/devel/calibrator/Makefile new file mode 100644 index 0000000..7a2952b --- /dev/null +++ b/devel/calibrator/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: calibrator +# Date created: 13 October 2003 +# Whom: bms@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= calibrator +PORTVERSION= 0.9 +CATEGORIES= devel +MASTER_SITES= http://homepages.cwi.nl/~manegold/Calibrator/src/ +DISTNAME= ${PORTNAME}.c +EXTRACT_SUFX= + +MAINTAINER= bms@FreeBSD.org +COMMENT= Cache Profiling Tool + +NO_WRKSUBDIR= yes + +do-extract: + ${MKDIR} ${WRKSRC} + ${CP} ${DISTDIR}/${DISTNAME} ${WRKSRC} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + +.include <bsd.port.mk> |