1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-15 10:17:20 +00:00
freebsd/gnu/usr.bin/yppush/Makefile
Bruce Evans a7aac2725f Add a dependency on the .x source file and avoid copying it.
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.
1995-07-04 08:39:27 +00:00

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>