Upgrade vi(1). 1/2
[dragonfly.git] / bin / ps / Makefile
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
4 PROG=   ps
5 SRCS=   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 #
12 CFLAGS+=-DLAZY_PS
13 DPADD=  ${LIBM} ${LIBKVM}
14 LDADD=  -lm -lkvm
15 #BINGRP=        kmem
16 #BINMODE=2555
17
18 .include <bsd.prog.mk>