cfb46b6f4c
view is identical to the output of `ps aux' except that a.) the RSS and VSZ fields are one character wider and b.) it shows a zero value for the RSS and %MEM columns of processes which report a negative RSS.
26 lines
579 B
Makefile
26 lines
579 B
Makefile
# $NetBSD: Makefile,v 1.14 1999/02/21 21:48:07 jwise Exp $
|
|
# @(#)Makefile 8.1 (Berkeley) 6/6/93
|
|
|
|
PROG= systat
|
|
|
|
.PATH: ${.CURDIR}/../../usr.bin/vmstat
|
|
|
|
CPPFLAGS+=-I${.CURDIR}/../../usr.bin/vmstat
|
|
CWARNFLAGS+= -Wno-format-y2k
|
|
SRCS= cmds.c cmdtab.c disks.c dkstats.c fetch.c iostat.c keyboard.c \
|
|
main.c mbufs.c netcmds.c netstat.c pigs.c ps.c swap.c vmstat.c
|
|
DPADD= ${LIBCURSES} ${LIBM} ${LIBKVM}
|
|
LDADD= -lcurses -lm -lkvm
|
|
BINGRP= kmem
|
|
BINMODE=2555
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
# XXX
|
|
.if defined(UVM)
|
|
CPPFLAGS+= -DUVM
|
|
.endif
|
|
.if defined(PMAP_NEW)
|
|
CPPFLAGS+= -DPMAP_NEW
|
|
.endif
|