diff options
author | mdodd <mdodd@FreeBSD.org> | 1999-08-19 03:29:15 +0000 |
---|---|---|
committer | mdodd <mdodd@FreeBSD.org> | 1999-08-19 03:29:15 +0000 |
commit | fb1440bad5cc00c25587f3b0fd43054fcd16e25e (patch) | |
tree | 3242df8d07f39194c3672c747f71ad962f1ada3e /usr.sbin/nslookup | |
parent | 527fa149136dffd80f5b36c338b544f09df1fe10 (diff) | |
download | FreeBSD-src-fb1440bad5cc00c25587f3b0fd43054fcd16e25e.zip FreeBSD-src-fb1440bad5cc00c25587f3b0fd43054fcd16e25e.tar.gz |
Add support for command line editing and history.
Remove src/contrib/bind/bin/nslookup/commands.c as it is generated by lex
from commands.l.
Submitted by: lpc/cdcontrol patches originally by msmith.
Reviewed by: msmith (in theory)
Diffstat (limited to 'usr.sbin/nslookup')
-rw-r--r-- | usr.sbin/nslookup/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/nslookup/Makefile b/usr.sbin/nslookup/Makefile index 13f7a41..eb30268 100644 --- a/usr.sbin/nslookup/Makefile +++ b/usr.sbin/nslookup/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.6 1998/05/03 05:14:56 peter Exp $ +# $Id: Makefile,v 1.7 1998/05/04 20:00:14 bde Exp $ .include "${.CURDIR}/../named/Makefile.inc" @@ -10,8 +10,8 @@ SRCS= main.c getinfo.c debug.c send.c skip.c list.c subr.c commands.l MAN8= nslookup.8 CFLAGS+=-D_PATH_HELPFILE=\"${DESTHELP}/nslookup.help\" -LDADD+= -ll -DPADD+= ${LIBL} +LDADD+= -ll -ledit -ltermcap +DPADD+= ${LIBL} ${LIBEDIT} ${LIBTERMCAP} beforeinstall: ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 \ |