blob: 39d8c41a04017655d015093db861a8b11fc2bbf2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# $NetBSD: bsd.rpc.mk,v 1.13 2013/12/15 00:28:45 christos Exp $
.include <bsd.init.mk>
RPC_XDIR?= ${.CURDIR}/
RPCGEN_FLAGS?= -B
# 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}
${_MKTARGET_CREATE}
${TOOL_RPCGEN} ${RPCGEN_FLAGS} -h ${RPC_XDIR}${I:.h=.x} -o ${.TARGET}
.endfor
DPSRCS+= ${RPC_INCS}
CLEANFILES+= ${RPC_INCS}
.endif # }
.if defined(RPC_XDRFILES) # {
.for I in ${RPC_XDRFILES}
${I}: ${RPC_XDIR}${I:_xdr.c=.x}
${_MKTARGET_CREATE}
${TOOL_RPCGEN} ${RPCGEN_FLAGS} -c ${RPC_XDIR}${I:_xdr.c=.x} -o ${.TARGET}
.endfor
DPSRCS+= ${RPC_XDRFILES}
CLEANFILES+= ${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}
${_MKTARGET_CREATE}
${TOOL_RPCGEN} ${RPCGEN_FLAGS} ${_RPCS} ${RPC_SVCFLAGS} ${RPC_XDIR}${I:_svc.c=.x} \
-o ${.TARGET}
.endfor
DPSRCS+= ${RPC_SVCFILES}
CLEANFILES+= ${RPC_SVCFILES}
.endif # }
.if defined(RPC_CLNTFILES) # {
.for I in ${RPC_CLNTFILES}
${I}: ${RPC_XDIR}${I:_clnt.c=.x}
${_MKTARGET_CREATE}
${TOOL_RPCGEN} ${RPCGEN_FLAGS} -l ${_RPCS} ${RPC_CLNTFLAGS} \
${RPC_XDIR}${I:_clnt.c=.x} -o ${.TARGET}
.endfor
DPSRCS+= ${RPC_CLNTFILES}
CLEANFILES+= ${RPC_CLNTFILES}
.endif # }
##### Pull in related .mk logic
.include <bsd.obj.mk>
.include <bsd.sys.mk>
.include <bsd.clean.mk>
|