diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-24 00:11:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-07-24 00:11:12 +0000 |
commit | 7c5db15603132b9f94a11af57c5a56b205c0eaff (patch) | |
tree | 47384a9485fd95c587188df50a275d708da17fa4 /usr.bin/systat | |
parent | 8a2ab60466cbd2986529c0e969ebfa5a622a5aa7 (diff) |
-lcurses, not termcap/termlib
Diffstat (limited to 'usr.bin/systat')
-rw-r--r-- | usr.bin/systat/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/systat/Makefile b/usr.bin/systat/Makefile index 1a9c99db68e..2d7e987d8f1 100644 --- a/usr.bin/systat/Makefile +++ b/usr.bin/systat/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 1998/01/05 00:01:55 deraadt Exp $ +# $OpenBSD: Makefile,v 1.8 1998/07/24 00:10:58 millert Exp $ PROG= systat @@ -7,8 +7,8 @@ PROG= systat CFLAGS+=-I${.CURDIR}/../../usr.bin/vmstat 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 swap.c vmstat.c -DPADD= ${LIBCURSES} ${LIBTERMLIB} ${LIBM} ${LIBKVM} -LDADD= -lcurses -ltermlib -lm -lkvm +DPADD= ${LIBCURSES} ${LIBM} ${LIBKVM} +LDADD= -lcurses -lm -lkvm BINGRP= kmem BINMODE=2555 |