xref: /freebsd/include/rpc/Makefile (revision e9ac41698b2f322d55ccf9da50a3596edb2c1800)
1.SUFFIXES: .x
2
3RPCCOM=	RPCGEN_CPP=${CPP:Q} rpcgen -C
4
5HDRS=	rpcb_prot.h
6
7XFILES= rpcb_prot.x
8
9HFILES=	auth.h auth_unix.h clnt.h clnt_soc.h clnt_stat.h \
10	nettype.h pmap_clnt.h pmap_prot.h pmap_rmt.h raw.h \
11	rpc.h rpc_msg.h rpcb_clnt.h rpcent.h rpc_com.h rpcsec_gss.h \
12	svc.h svc_auth.h svc_soc.h svc_dg.h xdr.h
13
14# Secure RPC
15HFILES+= auth_des.h des.h des_crypt.h
16
17# Kerberos
18HFILES+= auth_kerb.h
19
20CLEANFILES+= ${HDRS}
21
22INCS=	${HFILES} ${XFILES} ${HDRS}
23INCSDIR=${INCLUDEDIR}/rpc
24
25.x.h:
26	${RPCCOM} -h -DWANT_NFS3 ${.IMPSRC} -o ${.TARGET}
27
28.include <bsd.prog.mk>
29