8e7657a643
start (which pulls in <bsd.own.mk>), and <bsd.obj.mk> and <bsd.sys.mk> at the end. These provide the appropriate settings for TOOL_* .
58 lines
983 B
Makefile
58 lines
983 B
Makefile
# $NetBSD: bsd.rpc.mk,v 1.5 2003/07/14 00:52:12 lukem Exp $
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
RPC_XDIR?= ${.CURDIR}/
|
|
|
|
# We don't use implicit suffix rules here to avoid dependencies in the
|
|
# Installed files.
|
|
|
|
.if defined(RPC_INCS)
|
|
|
|
.for I in ${RPC_INCS}
|
|
${I}: ${I:.h=.x}
|
|
${TOOL_RPCGEN} -C -h ${RPC_XDIR}${I:.h=.x} -o ${.TARGET}
|
|
.endfor
|
|
|
|
CLEANFILES += ${RPC_INCS}
|
|
|
|
.depend: ${RPC_INCS}
|
|
|
|
.endif
|
|
|
|
.if defined(RPC_XDRFILES)
|
|
|
|
.for I in ${RPC_XDRFILES}
|
|
${I}: ${RPC_XDIR}${I:_xdr.c=.x}
|
|
${TOOL_RPCGEN} -C -c ${RPC_XDIR}${I:_xdr.c=.x} -o ${.TARGET}
|
|
.endfor
|
|
|
|
CLEANFILES += ${RPC_XDRFILES}
|
|
|
|
.depend: ${RPC_XDRFILES}
|
|
|
|
.endif
|
|
|
|
.if defined(RPC_SVCFILES)
|
|
|
|
.for I in ${RPC_SVCCLASS}
|
|
_RPCS += -s ${I}
|
|
.endfor
|
|
|
|
.for I in ${RPC_SVCFILES}
|
|
|
|
${I}: ${RPC_XDIR}${I:_svc.c=.x}
|
|
${TOOL_RPCGEN} -C ${_RPCS} ${RPC_SVCFLAGS} ${RPC_XDIR}${I:_svc.c=.x} \
|
|
-o ${.TARGET}
|
|
.endfor
|
|
|
|
CLEANFILES += ${RPC_SVCFILES}
|
|
|
|
.depend: ${RPC_SVCFILES}
|
|
|
|
##### Pull in related .mk logic
|
|
.include <bsd.obj.mk>
|
|
.include <bsd.sys.mk>
|
|
|
|
.endif
|