diff options
author | bde <bde@FreeBSD.org> | 1996-09-05 17:16:10 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1996-09-05 17:16:10 +0000 |
commit | 11546f4616454e8fe6b6b85898bc2f22f9930985 (patch) | |
tree | 235e8fcbe852dee096eebfd2c176b6d10c0afa2c /libexec/ypxfr/Makefile | |
parent | 38fd8fd26ef8cf2f925107c1267dd58f6e623be9 (diff) | |
download | FreeBSD-src-11546f4616454e8fe6b6b85898bc2f22f9930985.zip FreeBSD-src-11546f4616454e8fe6b6b85898bc2f22f9930985.tar.gz |
Fixed DPADD.
Diffstat (limited to 'libexec/ypxfr/Makefile')
-rw-r--r-- | libexec/ypxfr/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libexec/ypxfr/Makefile b/libexec/ypxfr/Makefile index 2beb10d..e7a9cad 100644 --- a/libexec/ypxfr/Makefile +++ b/libexec/ypxfr/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.2 1996/06/05 05:42:46 wpaul Exp $ +# $Id: Makefile,v 1.3 1996/06/06 03:58:06 wpaul Exp $ PROG= ypxfr SRCS= ypxfr_clnt.c yp_clnt.c ypxfr_getmap.c yp_dblookup.c \ @@ -10,7 +10,8 @@ SRCS= ypxfr_clnt.c yp_clnt.c ypxfr_getmap.c yp_dblookup.c \ MAN8= ypxfr.8 CFLAGS+= -I. -LDADD+= -lrpcsvc +DPADD= ${LIBRPCSVC} +LDADD= -lrpcsvc CLEANFILES= yp.h yp_clnt.c ypxfr_clnt.c |