Fixed world breakage in previous commit. -lwrap was in LDFLAGS where

it has no effect.

Fixed the usual style bugs for DPADD and LDADD.
This commit is contained in:
Bruce Evans 1999-03-29 03:17:43 +00:00
parent a4ca0596ca
commit 0a5f727d6a
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# @(#)Makefile 8.1 (Berkeley) 6/6/93
# $Id$
# $Id: Makefile,v 1.5 1999/03/28 10:55:03 markm Exp $
PROG= portmap
MAN8= portmap.8
@ -7,7 +7,7 @@ SRCS= portmap.c from_local.c pmap_check.c
SUBDIR= pmap_set pmap_dump
CFLAGS+=-DCHECK_PORT -DHOSTS_ACCESS
DPADD+= ${LIBWRAP}
LDFLAGS+=-lwrap
DPADD= ${LIBWRAP}
LDADD= -lwrap
.include <bsd.prog.mk>