HAMMER VFS - Major retooling of the refcount mechanics, and fix a deadlock
[dragonfly.git] / bin / ps / Makefile
blobf4dfc15f5a33757bce08ea56cf206ed9d99c9ba4
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
5 PROG= ps
6 SRCS= fmt.c keyword.c nlist.c print.c ps.c
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.
13 CFLAGS+=-I${.CURDIR}/../../sys -DLAZY_PS
14 DPADD= ${LIBM} ${LIBKVM}
15 LDADD= -lm -lkvm
16 #BINGRP= kmem
17 #BINMODE=2555
19 .include <bsd.prog.mk>