aboutsummaryrefslogtreecommitdiff
path: root/bin/ps/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'bin/ps/Makefile')
-rw-r--r--bin/ps/Makefile17
1 files changed, 17 insertions, 0 deletions
diff --git a/bin/ps/Makefile b/bin/ps/Makefile
new file mode 100644
index 000000000000..596aa57fd2df
--- /dev/null
+++ b/bin/ps/Makefile
@@ -0,0 +1,17 @@
+# $FreeBSD$
+# @(#)Makefile 8.1 (Berkeley) 6/2/93
+
+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>