xref: /dragonfly/bin/ps/Makefile (revision 0bb9290e)
1# $FreeBSD: src/bin/ps/Makefile,v 1.13 1999/11/17 13:37:30 peter Exp $
2# $DragonFly: src/bin/ps/Makefile,v 1.4 2005/02/06 06:16:40 okumoto Exp $
3#	@(#)Makefile	8.1 (Berkeley) 6/2/93
4
5PROG=	ps
6SRCS=	fmt.c keyword.c nlist.c print.c ps.c
7#
8# To support "lazy" ps for non root/wheel users
9# add -DLAZY_PS to the cflags.  This helps
10# keep ps from being an unnecessary load
11# on large systems.
12#
13CFLAGS+=-I${.CURDIR}/../../sys -DLAZY_PS
14DPADD=	${LIBM} ${LIBKVM}
15LDADD=	-lm -lkvm
16#BINGRP=	kmem
17#BINMODE=2555
18
19.include <bsd.prog.mk>
20