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
This commit is contained in:
Poul-Henning Kamp 2003-03-21 17:10:54 +00:00
parent 57842a38fd
commit 3cc4ca2df5
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=112468

View File

@ -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>