Pass -C to rpcgen.

This commit is contained in:
Stefan Farfeleder 2005-02-09 12:17:52 +00:00
parent da42b93280
commit 71bba86b33
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=141569

View File

@ -13,12 +13,12 @@ CLEANFILES= ${GENSRCS}
RPCSRC= ${DESTDIR}/usr/include/rpcsvc/bootparam_prot.x
bootparam_prot_clnt.c: ${RPCSRC}
rpcgen -l -o ${.TARGET} ${RPCSRC}
rpcgen -C -l -o ${.TARGET} ${RPCSRC}
bootparam_prot_xdr.c: ${RPCSRC}
rpcgen -c -o ${.TARGET} ${RPCSRC}
rpcgen -C -c -o ${.TARGET} ${RPCSRC}
bootparam_prot.h: ${RPCSRC}
rpcgen -h -o ${.TARGET} ${RPCSRC}
rpcgen -C -h -o ${.TARGET} ${RPCSRC}
.include <bsd.prog.mk>