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