diff options
author | gibbs <gibbs@FreeBSD.org> | 1998-09-15 08:16:45 +0000 |
---|---|---|
committer | gibbs <gibbs@FreeBSD.org> | 1998-09-15 08:16:45 +0000 |
commit | b954e9c2642216af00a08bacef1878dbfff8107d (patch) | |
tree | cc0e40580a3f167713ca8f61ac0e10a9c27433cc /usr.sbin/iostat/Makefile | |
parent | 78f0dc839b3d746460e6fd2f0ffbb260bf45504c (diff) | |
download | FreeBSD-src-b954e9c2642216af00a08bacef1878dbfff8107d.zip FreeBSD-src-b954e9c2642216af00a08bacef1878dbfff8107d.tar.gz |
Update system to new device statistics code.
Submitted by: "Kenneth D. Merry" <ken@plutotech.com>
Diffstat (limited to 'usr.sbin/iostat/Makefile')
-rw-r--r-- | usr.sbin/iostat/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/usr.sbin/iostat/Makefile b/usr.sbin/iostat/Makefile index b67da20..1caefc5 100644 --- a/usr.sbin/iostat/Makefile +++ b/usr.sbin/iostat/Makefile @@ -1,10 +1,11 @@ # @(#)Makefile 8.1 (Berkeley) 6/6/93 PROG= iostat -CFLAGS+=-I${.CURDIR}/../../usr.bin/vmstat -I${.CURDIR}/../../sys +CFLAGS+=-I${.CURDIR}/../../sys +SRCS= iostat.c MAN8= iostat.8 -DPADD= ${LIBKVM} -LDADD= -lkvm +DPADD= ${LIBKVM} ${LIBDEVSTAT} +LDADD= -lkvm -ldevstat BINGRP= kmem BINMODE=2555 |