1# from: @(#)Makefile 5.8 (Berkeley) 7/28/90 2# $Id$ 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 bootparam_prot.h 9 10RPCSRC= ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x 11 12bootparam_prot_clnt.c: ${RPCSRC} bootparam_prot.h 13 rpcgen -l -o ${.TARGET} ${RPCSRC} 14 15bootparam_prot_xdr.c: ${RPCSRC} bootparam_prot.h 16 rpcgen -c -o ${.TARGET} ${RPCSRC} 17 18bootparam_prot.h: ${RPCSRC} 19 rpcgen -h -o ${.TARGET} ${RPCSRC} 20 21.include <bsd.prog.mk> 22