diff options
author | bde <bde@FreeBSD.org> | 1999-01-01 09:54:09 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1999-01-01 09:54:09 +0000 |
commit | 318efa92f40e889ece9741f01db52cbc3355c059 (patch) | |
tree | 5d8b6eb08b191e45b8d3c8cbd52577617a47c9d7 /usr.sbin | |
parent | 84d6a9ea2a1d6d46deeb6daf5fc1c3f5e747166b (diff) | |
download | FreeBSD-src-318efa92f40e889ece9741f01db52cbc3355c059.zip FreeBSD-src-318efa92f40e889ece9741f01db52cbc3355c059.tar.gz |
Fixed a missing library and a style bug in LDADD. Static linkage was broken.
Fixed missing DPADD.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/i4b/isdntel/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.sbin/i4b/isdntel/Makefile b/usr.sbin/i4b/isdntel/Makefile index c44fc80..7528571 100644 --- a/usr.sbin/i4b/isdntel/Makefile +++ b/usr.sbin/i4b/isdntel/Makefile @@ -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> |