xref: /freebsd/bin/ps/Makefile (revision 3e7045591d1cf3703d05dfeaae2fab974f50d534)
1# $FreeBSD$
2#	@(#)Makefile	8.1 (Berkeley) 6/2/93
3
4PROG=	ps
5SRCS=	fmt.c keyword.c nlist.c print.c ps.c
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#
12WARNS=	1
13WFORMAT=0
14CFLAGS+=-DLAZY_PS
15DPADD=	${LIBM} ${LIBKVM}
16LDADD=	-lm -lkvm
17#BINGRP=	kmem
18#BINMODE=2555
19
20.include <bsd.prog.mk>
21