Bring in a transport-independent RPC (TI-RPC).
[dragonfly.git] / include / rpc / Makefile
blobcd3d39731e9ac1813e9014b2714271e8b9e21cb6
1 # $FreeBSD: src/include/rpc/Makefile,v 1.2 2002/05/12 16:00:48 ru Exp $
2 # $DragonFly: src/include/rpc/Makefile,v 1.2 2003/06/17 04:25:58 dillon Exp $
4 .SUFFIXES: .x
6 RPCCOM = rpcgen -C
8 HDRS= rpcb_prot.h
10 XFILES= rpcb_prot.x
12 HFILES= auth.h auth_unix.h clnt.h clnt_soc.h clnt_stat.h \
13 nettype.h pmap_clnt.h pmap_prot.h pmap_rmt.h raw.h \
14 rpc.h rpc_msg.h rpcb_clnt.h rpcent.h rpc_com.h \
15 svc.h svc_auth.h svc_soc.h svc_dg.h types.h xdr.h
17 # Secure RPC
18 HFILES+= auth_des.h des.h des_crypt.h
20 # Kerberos
21 HFILES+= auth_kerb.h
23 CLEANFILES+= ${HDRS}
25 INCS= ${HFILES} ${XFILES} ${HDRS}
26 INCSDIR=${INCLUDEDIR}/rpc
28 .x.h:
29 ${RPCCOM} -h -DWANT_NFS3 ${.IMPSRC} -o ${.TARGET}
31 .include <bsd.prog.mk>