From 3cc4ca2df51dfb19b194591eff91945838ceb371 Mon Sep 17 00:00:00 2001 From: Poul-Henning Kamp Date: Fri, 21 Mar 2003 17:10:54 +0000 Subject: [PATCH] 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 --- usr.sbin/gstat/Makefile | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/usr.sbin/gstat/Makefile b/usr.sbin/gstat/Makefile index cff804055a1c..ce5232799f27 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