diff options
author | phk <phk@FreeBSD.org> | 2003-03-21 17:10:54 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-03-21 17:10:54 +0000 |
commit | 2ead165b2523224693a1fe5664761073185728e2 (patch) | |
tree | bac17f717b35d29d82611e24508df7672f95dfe5 /usr.sbin/gstat | |
parent | c2f6d7a732ea0dbba18134e978f4262a44e1af0f (diff) | |
download | FreeBSD-src-2ead165b2523224693a1fe5664761073185728e2.zip FreeBSD-src-2ead165b2523224693a1fe5664761073185728e2.tar.gz |
Why doesn't anybody ever tell me anything? When did we get a libsbuf ?
Geeze, I'll just crawl back into the kernel where I know what's going on...
Use libsbuf instead of pulling a file in from the kernel.
Taught by: jhb
Diffstat (limited to 'usr.sbin/gstat')
-rw-r--r-- | usr.sbin/gstat/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/usr.sbin/gstat/Makefile b/usr.sbin/gstat/Makefile index cff8040..ce52327 100644 --- a/usr.sbin/gstat/Makefile +++ b/usr.sbin/gstat/Makefile @@ -1,12 +1,10 @@ # $FreeBSD$ -.PATH: ${.CURDIR}/../../sys/kern - PROG= gstat NOMAN= -SRCS= gstat.c subr_sbuf.c +SRCS= gstat.c WARNS?= 5 -DPADD= ${LIBGEOM} ${LIBDEVSTAT} ${LIBKVM} ${LIBBSDXML} ${LIBCURSES} -LDADD= -lgeom -ldevstat -lkvm -lbsdxml -lcurses +DPADD= ${LIBGEOM} ${LIBDEVSTAT} ${LIBKVM} ${LIBBSDXML} ${LIBCURSES} ${LIBSBUF} +LDADD= -lgeom -ldevstat -lkvm -lbsdxml -lcurses -lsbuf .include <bsd.prog.mk> |