xref: /freebsd/bin/ps/Makefile (revision 9aaf4e3be61fc20a84347b7c2c524256a4b93a43)
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