freebsd-dev/bin/ps/Makefile
Garrett Wollman 7be58aba8e Make `ps' set-uid root so that it can read the same set of arguments
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.
1994-08-11 20:06:55 +00:00

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>