Merge branch 'vendor/GCC47'
[dragonfly.git] / bin / ps / Makefile
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
5 PROG=   ps
6 SRCS=   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 #
13 CFLAGS+=-I${.CURDIR}/../../sys -DLAZY_PS
14 DPADD=  ${LIBM} ${LIBKVM}
15 LDADD=  -lm -lkvm
16 #BINGRP=        kmem
17 #BINMODE=2555
18
19 .include <bsd.prog.mk>