422cf01ca5
that old `ps'es did. I'm not too thrilled about this, but I'm not enough of an FS person to hack procfs so that /proc/xxx/mem is readable by members of group `kmem'. If this is done, then `ps' can go back to being set-gid kmem.
12 lines
200 B
Makefile
12 lines
200 B
Makefile
# @(#)Makefile 8.1 (Berkeley) 6/2/93
|
|
|
|
PROG= ps
|
|
SRCS= fmt.c keyword.c nlist.c print.c ps.c
|
|
CFLAGS+=-I/sys
|
|
DPADD= ${LIBMATH} ${LIBKVM}
|
|
LDADD= -lm -lkvm
|
|
BINOWN= root
|
|
BINMODE=4555
|
|
|
|
.include <bsd.prog.mk>
|