1999-08-28 01:15:48 +02:00
|
|
|
# $FreeBSD$
|
1994-05-26 08:18:55 +02:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/2/93
|
|
|
|
|
2016-02-09 17:58:50 +01:00
|
|
|
PACKAGE=runtime
|
1994-05-26 08:18:55 +02:00
|
|
|
PROG= ps
|
2002-10-24 02:00:57 +02:00
|
|
|
SRCS= fmt.c keyword.c nlist.c print.c ps.c
|
2005-01-27 14:42:40 +01:00
|
|
|
|
1997-12-05 08:33:40 +01:00
|
|
|
#
|
|
|
|
# To support "lazy" ps for non root/wheel users
|
|
|
|
# add -DLAZY_PS to the cflags. This helps
|
|
|
|
# keep ps from being an unnecessary load
|
|
|
|
# on large systems.
|
|
|
|
#
|
2001-05-18 15:41:42 +02:00
|
|
|
CFLAGS+=-DLAZY_PS
|
2015-10-18 09:30:50 +02:00
|
|
|
LIBADD= m kvm jail xo
|
1994-05-26 08:18:55 +02:00
|
|
|
|
|
|
|
.include <bsd.prog.mk>
|