-ltermcap is required due to -lreadline else you get missing functions

like 'tputs()' et al...
This commit is contained in:
Marc G. Fournier 1998-05-01 02:49:40 +00:00
parent e493d28abc
commit 6d9a59f558
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35572

View File

@ -1,4 +1,4 @@
# $Id: Makefile,v 1.8 1998/04/30 08:14:04 ache Exp $
# $Id: Makefile,v 1.9 1998/04/30 15:59:49 ache Exp $
.include "${.CURDIR}/../Makefile.inc"
@ -30,6 +30,6 @@ scan.o: bc.h
CLEANFILES+= ${GENSRCS} y.tab.h bc.h
DPADD+= ${LIBREADLINE}
LDADD+= -lreadline
LDADD+= -lreadline -ltermcap
.include <bsd.prog.mk>