diff options
author | Konstantin Belousov <kib@FreeBSD.org> | 2021-10-26 08:43:08 +0000 |
---|---|---|
committer | Konstantin Belousov <kib@FreeBSD.org> | 2021-11-01 00:44:51 +0000 |
commit | f33a9999e2a458afe4b9c8f5cee42b30feb308ee (patch) | |
tree | 21704f68156b2d49a18a46fbfa1e7b172934d675 /usr.bin/systat/Makefile | |
parent | cfccf3baca5c26feb9fb4b72a980ea85d3f4f810 (diff) |
Augment systat(1) -swap to display large swap space processes
(cherry picked from commit 57e5da2c98003e5ab77a337e9fbe22ab7e512ba7)
Diffstat (limited to 'usr.bin/systat/Makefile')
-rw-r--r-- | usr.bin/systat/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/systat/Makefile b/usr.bin/systat/Makefile index ca3f7ed72ce4..bfbe1336d291 100644 --- a/usr.bin/systat/Makefile +++ b/usr.bin/systat/Makefile @@ -5,7 +5,7 @@ PROG= systat SRCS= cmds.c cmdtab.c devs.c fetch.c iostat.c keyboard.c main.c sysput.c \ - netcmds.c netstat.c pigs.c swap.c icmp.c \ + netcmds.c netstat.c pigs.c proc.c swap.c icmp.c \ mode.c ip.c sctp.c tcp.c zarc.c \ vmstat.c convtbl.c ifcmds.c ifstat.c @@ -16,6 +16,6 @@ CFLAGS+= -DINET6 WARNS?= 1 -LIBADD= ncursesw m devstat kvm util +LIBADD= ncursesw m devstat kvm util procstat .include <bsd.prog.mk> |