Remove unneded -lmytinfo

This commit is contained in:
ache 2000-09-16 04:27:30 +00:00
parent 6d7b369241
commit e690f012cf
3 changed files with 6 additions and 6 deletions

View File

@ -17,8 +17,8 @@ EXAMPLES= Makefile check1.c check2.c check3.c dselect.c fselect.c \
CFLAGS+= -I${.CURDIR} -Wall -Wstrict-prototypes -DLOCALE
LDADD+= -lncurses -lmytinfo
DPADD+= ${LIBNCURSES} ${LIBMYTINFO}
LDADD+= -lncurses
DPADD+= ${LIBNCURSES}
beforeinstall:
${INSTALL} -C -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/dialog.h \

View File

@ -8,7 +8,7 @@ MAN1= dialog.1
CFLAGS+= -Wall -Wstrict-prototypes
DPADD+= $(LIBDIALOG) $(LIBNCURSES) $(LIBMYTINFO)
LDADD+= -ldialog -lncurses -lmytinfo
DPADD+= $(LIBDIALOG) $(LIBNCURSES)
LDADD+= -ldialog -lncurses
.include <bsd.prog.mk>

View File

@ -3,7 +3,7 @@
PROG= stlstats
MAN8= stlstats.8
DPADD= ${LIBNCURSES} ${LIBMYTINFO}
LDADD= -lncurses -lmytinfo
DPADD= ${LIBNCURSES}
LDADD= -lncurses
.include <bsd.prog.mk>