1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-28 08:02:54 +00:00

Fixed a missing library and a style bug in LDADD. Static linkage was broken.

Fixed missing DPADD.
This commit is contained in:
Bruce Evans 1999-01-01 09:54:09 +00:00
parent bf2033044e
commit f26138d566
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=42226

View File

@ -1,6 +1,9 @@
# $Id$
PROG = isdntel
SRCS = main.c display.c files.c alias.c
LDADD += -lncurses
DPADD = ${LIBNCURSES} ${LIBMYTINFO}
LDADD = -lncurses -lmytinfo
MAN8 = isdntel.8
.include <bsd.prog.mk>