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