mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-25 10:01:02 +01:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
15 lines
289 B
Makefile
15 lines
289 B
Makefile
PACKAGE=runtime
|
|
PROG= ps
|
|
SRCS= fmt.c keyword.c nlist.c print.c ps.c
|
|
|
|
#
|
|
# 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.
|
|
#
|
|
CFLAGS+=-DLAZY_PS
|
|
LIBADD= m kvm jail xo
|
|
|
|
.include <bsd.prog.mk>
|