xref: /freebsd/bin/ps/Makefile (revision 078a31136c8ce89c23c0fae0b24f98c0bd4d45e6)
1
2PACKAGE=runtime
3PROG=	ps
4SRCS=	fmt.c keyword.c nlist.c print.c ps.c
5
6#
7# To support "lazy" ps for non root/wheel users
8# add -DLAZY_PS to the cflags.  This helps
9# keep ps from being an unnecessary load
10# on large systems.
11#
12CFLAGS+=-DLAZY_PS
13LIBADD=	m kvm jail xo
14
15.include <bsd.prog.mk>
16