diff options
author | bde <bde@FreeBSD.org> | 1998-05-10 16:03:17 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-05-10 16:03:17 +0000 |
commit | 41d8b659be6565e47a824e83c3cf514fbf20002a (patch) | |
tree | 2e81c4b34dfca067e21b3f2b7723d18f4f1ffd7e /usr.sbin/rpc.ypxfrd/Makefile | |
parent | 3325f91b7d182ba90f1fed4ea9643cd25dca7e40 (diff) | |
download | FreeBSD-src-41d8b659be6565e47a824e83c3cf514fbf20002a.zip FreeBSD-src-41d8b659be6565e47a824e83c3cf514fbf20002a.tar.gz |
Removed bogus dependencies of generated .c files on generated headers.
Diffstat (limited to 'usr.sbin/rpc.ypxfrd/Makefile')
-rw-r--r-- | usr.sbin/rpc.ypxfrd/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/rpc.ypxfrd/Makefile b/usr.sbin/rpc.ypxfrd/Makefile index 44195b5..c9ae441 100644 --- a/usr.sbin/rpc.ypxfrd/Makefile +++ b/usr.sbin/rpc.ypxfrd/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.5 1997/02/22 16:13:00 peter Exp $ +# $Id: Makefile,v 1.6 1998/03/06 14:34:47 bde Exp $ PROG= rpc.ypxfrd SRCS= ypxfrd_svc.c ypxfrd.h ypxfrd_server.c yp_error.c \ @@ -21,12 +21,12 @@ RPCGEN= rpcgen -I -C # We need to remove the 'static' keyword from _rpcsvcstate so that # ypxfrd_main.c can see it. -ypxfrd_svc.c: ${RPCDIR}/ypxfrd.x ypxfrd.h +ypxfrd_svc.c: ${RPCDIR}/ypxfrd.x rm -f ${.TARGET} ${RPCGEN} -m ${RPCDIR}/ypxfrd.x | \ sed s/"static int _rpcsvcstate"/"int _rpcsvcstate"/g > ${.TARGET} -# ypxfrd_xdr.c: ${RPCDIR}/ypxfrd.x ypxfrd.h +# ypxfrd_xdr.c: ${RPCDIR}/ypxfrd.x # rm -f ${.TARGET} # ${RPCGEN} -c -o ${.TARGET} ${RPCDIR}/ypxfrd.x |