diff options
author | ache <ache@FreeBSD.org> | 1997-03-24 14:29:46 +0000 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1997-03-24 14:29:46 +0000 |
commit | 650d13ffa576ffec2824211a52fdc286869f91b3 (patch) | |
tree | 28aef0a797fdd2d599c03b64f90763bb97435e74 /usr.bin/top | |
parent | 51c8cf75db8f2ea29cc7897a28f3700278f84144 (diff) | |
download | FreeBSD-src-650d13ffa576ffec2824211a52fdc286869f91b3.zip FreeBSD-src-650d13ffa576ffec2824211a52fdc286869f91b3.tar.gz |
Remove libcurses, it is pure termcap application
Diffstat (limited to 'usr.bin/top')
-rw-r--r-- | usr.bin/top/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/top/Makefile b/usr.bin/top/Makefile index 47a5009..0b3a9d1 100644 --- a/usr.bin/top/Makefile +++ b/usr.bin/top/Makefile @@ -17,8 +17,8 @@ CFLAGS+= -D"Table_size=${TOP_TABLE_SIZE}" SRCS= commands.c display.c machine.c screen.c top.c \ username.c utils.c version.c -DPADD= ${LIBCURSES} ${LIBTERMCAP} ${LIBM} ${LIBKVM} -LDADD= -lcurses -ltermcap -lm -lkvm +DPADD= ${LIBTERMCAP} ${LIBM} ${LIBKVM} +LDADD= -ltermcap -lm -lkvm BINGRP= kmem BINMODE=2555 |