Add missing DPADD, remove duplicate -ltermcap

This commit is contained in:
Peter Wemm 1996-08-30 01:50:07 +00:00
parent 1d4b71eaa3
commit b7e5f46aed
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=17929

View File

@ -7,6 +7,7 @@ OSRCS= chared.c common.c el.c emacs.c hist.c key.c map.c parse.c \
help.c fcns.c help.h
LDADD+= -ltermcap
DPADD+= ${LIBTERMCAP}
# For speed and debugging
#SRCS= ${OSRCS} tokenizer.c history.c
@ -49,6 +50,6 @@ editline.c: ${OSRCS}
test: test.o libedit.a ${DPADD} ${LIBTERMCAP}
${CC} ${CFLAGS} ${.ALLSRC} -o ${.TARGET} libedit.a ${LDADD} -ltermcap
${CC} ${CFLAGS} ${.ALLSRC} -o ${.TARGET} libedit.a ${LDADD}
.include <bsd.lib.mk>