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