mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
a7aac2725f
bootparam_prot.x was changed for nfsv3 but bootparamd and callbootd kept using the old version which fortunately failed at build time. Copying hasn't been necessary since path handling was fixed in rpcgen/rpc_main.c some time ago.
19 lines
364 B
Makefile
19 lines
364 B
Makefile
# from: @(#)Makefile 5.8 (Berkeley) 7/28/90
|
|
# $Id: Makefile,v 1.7 1995/05/30 05:05:19 rgrimes Exp $
|
|
|
|
PROG= yppush
|
|
SRCS= yp_clnt.c yppush.c
|
|
|
|
MAN8= yppush.8
|
|
CLEANFILES= yp_clnt.c yp.h
|
|
|
|
RPCSRC= ${DESTDIR}/usr/include/rpcsvc/yp.x
|
|
|
|
yp_clnt.c: ${RPCSRC} yp.h
|
|
rpcgen -l -o ${.TARGET} ${RPCSRC}
|
|
|
|
yp.h: ${RPCSRC}
|
|
rpcgen -h -o ${.TARGET} ${RPCSRC}
|
|
|
|
.include <bsd.prog.mk>
|