aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/systat/Makefile
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2000-09-16 03:30:50 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2000-09-16 03:30:50 +0000
commit2aed24b4876ee8144f07158005fa6fd203666f54 (patch)
treebe3e1a97363b1378cb468a1c33b74a78368eb766 /usr.bin/systat/Makefile
parent313c02bc4b2c6618be8a1254e314c35be83783f4 (diff)
Remove unneded -ltermcap
Notes
Notes: svn path=/head/; revision=65910
Diffstat (limited to 'usr.bin/systat/Makefile')
-rw-r--r--usr.bin/systat/Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/systat/Makefile b/usr.bin/systat/Makefile
index 45ef5f7e777e..0f4a40e7b3cc 100644
--- a/usr.bin/systat/Makefile
+++ b/usr.bin/systat/Makefile
@@ -1,12 +1,13 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
+# $FreeBSD$
PROG= systat
CFLAGS+=-I${.CURDIR}/../../sys
SRCS= cmds.c cmdtab.c devs.c fetch.c iostat.c keyboard.c main.c \
mbufs.c netcmds.c netstat.c pigs.c swap.c icmp.c mode.c ip.c tcp.c \
vmstat.c
-DPADD= ${LIBCURSES} ${LIBTERMCAP} ${LIBM} ${LIBKVM} ${LIBDEVSTAT}
-LDADD= -lcurses -ltermcap -lm -lkvm -ldevstat
+DPADD= ${LIBCURSES} ${LIBM} ${LIBKVM} ${LIBDEVSTAT}
+LDADD= -lcurses -lm -lkvm -ldevstat
BINGRP= kmem
BINMODE=2555