1# from: @(#)Makefile 5.8 (Berkeley) 7/28/90 2# $FreeBSD$ 3 4PROG= callbootd 5SRCS= callbootd.c ${GENSRCS} 6GENSRCS=bootparam_prot.h bootparam_prot_clnt.c bootparam_prot_xdr.c 7NOMAN= 8CFLAGS+= -I. 9CLEANFILES= ${GENSRCS} 10 11RPCSRC= ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x 12 13bootparam_prot_clnt.c: ${RPCSRC} 14 rpcgen -l -o ${.TARGET} ${RPCSRC} 15 16bootparam_prot_xdr.c: ${RPCSRC} 17 rpcgen -c -o ${.TARGET} ${RPCSRC} 18 19bootparam_prot.h: ${RPCSRC} 20 rpcgen -h -o ${.TARGET} ${RPCSRC} 21 22.include <bsd.prog.mk> 23