xref: /freebsd/bin/ps/Makefile (revision a8445737e740901f5f2c8d24c12ef7fc8b00134e)
1#	$Id: Makefile,v 1.10 1997/08/13 17:35:00 steve Exp $
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#
12CFLAGS+=-I${.CURDIR}/../../sys -DLAZY_PS
13DPADD=	${LIBM} ${LIBKVM}
14LDADD=	-lm -lkvm
15BINGRP=	kmem
16BINMODE=2555
17
18.include <bsd.prog.mk>
19