freebsd-dev/usr.sbin/gstat/Makefile
Poul-Henning Kamp 54a8adabd3 Add a rudimentary gstat(8) to the system.
This is a small curses based program which shows the diskactivity
inside GEOM.
2003-03-20 20:48:41 +00:00

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>