b47da8cf74
The use of libkvm for post-mortem analysis is still supported (though it could use more testing). We can now remove vmstat's setgid bit. While I'm here, hack the interrupt listing code to not display interrupts that haven't occurred unless the -a option was given on the command line, and document this change.
10 lines
155 B
Makefile
10 lines
155 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
# $FreeBSD$
|
|
|
|
PROG= vmstat
|
|
MAN= vmstat.8
|
|
DPADD= ${LIBKVM} ${LIBDEVSTAT}
|
|
LDADD= -lkvm -ldevstat
|
|
|
|
.include <bsd.prog.mk>
|