1# $FreeBSD$ 2# @(#)Makefile 8.1 (Berkeley) 6/2/93 3 4PACKAGE=runtime 5PROG= ps 6SRCS= fmt.c keyword.c nlist.c print.c ps.c 7 8# 9# To support "lazy" ps for non root/wheel users 10# add -DLAZY_PS to the cflags. This helps 11# keep ps from being an unnecessary load 12# on large systems. 13# 14CFLAGS+=-DLAZY_PS 15LIBADD= m kvm jail xo 16 17.include <bsd.prog.mk> 18