1# from: @(#)Makefile 5.8 (Berkeley) 7/28/90 2# $Id: Makefile,v 1.1 1994/08/08 01:03:57 wollman Exp $ 3 4PROG= callbootd 5SRCS= bootparam_prot_xdr.c bootparam_prot_clnt.c callbootd.c 6NOMAN= 7CLEANFILES= bootparam_prot_clnt.c bootparam_prot_xdr.c \ 8 bootparam_prot.h bootparam_prot.x 9 10bootparam_prot_clnt.c: bootparam_prot.h 11 rm -f ${.CURDIR}/bootparam_prot.x 12 cp /usr/include/rpcsvc/bootparam_prot.x ${.CURDIR} 13 rpcgen -l -o ${.CURDIR}/bootparam_prot_clnt.c \ 14 ${.CURDIR}/bootparam_prot.x 15 16bootparam_prot_xdr.c: bootparam_prot.h 17 rm -f ${.CURDIR}/bootparam_prot.x 18 cp /usr/include/rpcsvc/bootparam_prot.x ${.CURDIR} 19 rpcgen -c -o ${.CURDIR}/bootparam_prot_xdr.c \ 20 ${.CURDIR}/bootparam_prot.x 21 22bootparam_prot.h: 23 rm -f ${.CURDIR}/bootparam_prot.x 24 cp /usr/include/rpcsvc/bootparam_prot.x ${.CURDIR} 25 rpcgen -h -o ${.CURDIR}/bootparam_prot.h \ 26 ${.CURDIR}/bootparam_prot.x 27 28.include <bsd.prog.mk> 29