Fixed missing DPADD.

Fixed some style bugs (some usual ones for LDADD, and some misformattings).
This commit is contained in:
Bruce Evans 2000-03-27 16:45:49 +00:00
parent 54672551d7
commit dc1c41d0a8

View File

@ -1,4 +1,5 @@
# $FreeBSD$
PROG = isdnmonitor
SRCS = main.c curses.c
MAN8 = isdnmonitor.8
@ -6,6 +7,7 @@ MAN8 = isdnmonitor.8
# compile debug support
COPTS += -DDEBUG
LDADD += -lcurses
DPADD = ${LIBCURSES}
LDADD = -lcurses
.include <bsd.prog.mk>