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