blob: 02f8bf1674b2cc8c8e896043ee4a0cf49966fcb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# $NetBSD: Makefile,v 1.8 2001/11/01 15:03:08 tv Exp $
#
INCS= auth.h auth_unix.h clnt.h clnt_soc.h nettype.h \
pmap_clnt.h pmap_prot.h pmap_rmt.h raw.h rpc.h \
rpc_msg.h rpcb_clnt.h rpcb_prot.h rpcent.h \
svc.h svc_auth.h svc_soc.h types.h xdr.h
CLEANFILES+= rpcb_prot.h
INCSDIR= /usr/include/rpc
.include <bsd.prog.mk>
# Resolve rpcgen's path, to allow it to be a dependency.
_RPCGEN:= ${RPCGEN}
.if ${_RPCGEN:M/*} == ""
_RPCGEN!= type ${RPCGEN} | awk '{print $$NF}'
.endif
rpcb_prot.h: rpcb_prot.x ${_RPCGEN}
${RPCGEN} -C -h ${.CURDIR}/rpcb_prot.x -o ${.TARGET}
|