1b9fefab7SBill Paul# from: @(#)Makefile 5.8 (Berkeley) 7/28/90 21214e6daSPoul-Henning Kamp# $Id: Makefile,v 1.1.1.1 1995/02/26 23:40:53 wpaul Exp $ 3b9fefab7SBill Paul 4b9fefab7SBill PaulPROG= callbootd 5b9fefab7SBill PaulSRCS= bootparam_prot_xdr.c bootparam_prot_clnt.c callbootd.c 6b9fefab7SBill PaulNOMAN= 71214e6daSPoul-Henning KampCFLAGS+= -I. 8b9fefab7SBill PaulCLEANFILES= bootparam_prot_clnt.c bootparam_prot_xdr.c \ 9b9fefab7SBill Paul bootparam_prot.h bootparam_prot.x 10b9fefab7SBill Paul 11b9fefab7SBill Paulbootparam_prot_clnt.c: bootparam_prot.h 121214e6daSPoul-Henning Kamp rm -f bootparam_prot.x 131214e6daSPoul-Henning Kamp cp ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x . 141214e6daSPoul-Henning Kamp rpcgen -l -o bootparam_prot_clnt.c bootparam_prot.x 15b9fefab7SBill Paul 16b9fefab7SBill Paulbootparam_prot_xdr.c: bootparam_prot.h 171214e6daSPoul-Henning Kamp rm -f bootparam_prot.x 181214e6daSPoul-Henning Kamp cp ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x . 191214e6daSPoul-Henning Kamp rpcgen -c -o bootparam_prot_xdr.c bootparam_prot.x 20b9fefab7SBill Paul 21b9fefab7SBill Paulbootparam_prot.h: 221214e6daSPoul-Henning Kamp rm -f bootparam_prot.x 231214e6daSPoul-Henning Kamp cp ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x . 241214e6daSPoul-Henning Kamp rpcgen -h -o bootparam_prot.h bootparam_prot.x 25b9fefab7SBill Paul 26b9fefab7SBill Paul.include <bsd.prog.mk> 27