We don't actually need libutil when building as a hostprog.

This commit is contained in:
thorpej 2003-03-13 04:50:53 +00:00
parent c0d5461540
commit 0164fc61c8

View File

@ -1,11 +1,13 @@
# $NetBSD: Makefile,v 1.2 2002/01/15 00:57:27 wiz Exp $
# $NetBSD: Makefile,v 1.3 2003/03/13 04:50:53 thorpej Exp $
PROG= sunlabel
MAN= sunlabel.8
LDADD+= -ltermcap -lutil
DPADD+= ${LIBTERMCAP} ${LIBUTIL}
LDADD+= -ltermcap
DPADD+= ${LIBTERMCAP}
.ifndef HOSTPROG
DPADD+= ${LIBUTIL}
LDADD+= -lutil
.include <bsd.prog.mk>
.endif