xref: /dragonfly/bin/ps/Makefile (revision 37de577a)
1# $FreeBSD: src/bin/ps/Makefile,v 1.13 1999/11/17 13:37:30 peter 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+=-DLAZY_PS
13DPADD=	${LIBM} ${LIBKVM}
14LDADD=	-lm -lkvm
15#BINGRP=	kmem
16#BINMODE=2555
17
18.include <bsd.prog.mk>
19