54a8adabd3
This is a small curses based program which shows the diskactivity inside GEOM.
20 lines
227 B
Makefile
20 lines
227 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= gstat
|
|
|
|
SRCS= gstat.c subr_sbuf.c
|
|
|
|
.PATH: ${CURDIR}/../../../../sys/kern
|
|
|
|
WARNS?= 5
|
|
|
|
LDADD += -lgeom
|
|
LDADD += -ldevstat
|
|
LDADD += -lkvm
|
|
LDADD += -lbsdxml
|
|
LDADD += -lcurses
|
|
|
|
NOMAN= sorry
|
|
|
|
.include <bsd.prog.mk>
|