NetBSD/bin/ps/Makefile
bgrayson be8534f744 Added experimental fallback /proc-based lookup. Warnings are printed when the
fallback method is used, as the results could be untrustworthy if an
intruder is present.  It is highly likely that NetBSD-1.5 will have
an improved kvm interface for reading process information, at which
point this code can be garbage-collected.  Also added a word to the
man page -x option description while I was here.
1999-03-26 22:36:02 +00:00

19 lines
356 B
Makefile

# $NetBSD: Makefile,v 1.25 1999/03/26 22:36:02 bgrayson Exp $
# @(#)Makefile 8.1 (Berkeley) 6/2/93
PROG= ps
SRCS= fmt.c keyword.c nlist.c print.c ps.c procfs_ops.c
DPADD= ${LIBM} ${LIBKVM}
LDADD= -lm -lkvm
BINGRP= kmem
BINMODE= 2555
CWARNFLAGS+= -Wno-format-y2k
.include <bsd.prog.mk>
# XXX
.if defined(PMAP_NEW)
CPPFLAGS+= -DPMAP_NEW
.endif