diff options
author | wpaul <wpaul@FreeBSD.org> | 1996-01-12 07:03:33 +0000 |
---|---|---|
committer | wpaul <wpaul@FreeBSD.org> | 1996-01-12 07:03:33 +0000 |
commit | 226cb5fee95f97eebee115381c5d7c4800d544c8 (patch) | |
tree | 20b92da117675d48f09a3b446b0d992a76bb5a30 /usr.sbin/yppush/Makefile | |
parent | 48229bd2a16f4f312353e0d1061659a4082ac85d (diff) | |
parent | 57e5d5b64973afaf302bb895f9b39c3bd058ede1 (diff) | |
download | FreeBSD-src-226cb5fee95f97eebee115381c5d7c4800d544c8.zip FreeBSD-src-226cb5fee95f97eebee115381c5d7c4800d544c8.tar.gz |
This commit was generated by cvs2svn to compensate for changes in r13394,
which included commits to RCS files with non-trunk default branches.
Diffstat (limited to 'usr.sbin/yppush/Makefile')
-rw-r--r-- | usr.sbin/yppush/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/usr.sbin/yppush/Makefile b/usr.sbin/yppush/Makefile new file mode 100644 index 0000000..e8aaea6 --- /dev/null +++ b/usr.sbin/yppush/Makefile @@ -0,0 +1,26 @@ +# $Id: Makefile,v 1.6 1995/12/16 04:03:02 wpaul Exp $ + +PROG= yppush +SRCS= yp_clnt.c ypxfr_getmap.c yp_dblookup.c yppush_svc.c \ + yp_error.c ypxfr_misc.c yppush_main.c + +.PATH: ${.CURDIR}/../ypserv ${.CURDIR}/../../libexec/ypxfr + +MAN8= yppush.8 +CFLAGS+=-I. -I${.CURDIR}/../../libexec/ypxfr + +CLEANFILES= yp.h yp_clnt.c yppush_svc.c + +RPCSRC= ${.DESTDIR}/usr/include/rpcsvc/yp.x +RPCGEN= rpcgen -C + +yppush_svc.c: ${RPCSRC} yp.h + ${RPCGEN} -DYPPUSH_ONLY -m -o ${.TARGET} ${RPCSRC} + +yp_clnt.c: ${RPCSRC} yp.h + ${RPCGEN} -DYPSERV_ONLY -l -o ${.TARGET} ${RPCSRC} + +yp.h: ${RPCSRC} + ${RPCGEN} -h -o ${.TARGET} ${RPCSRC} + +.include <bsd.prog.mk> |