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