summaryrefslogtreecommitdiff
path: root/include/rpc
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>2002-05-20 18:50:59 +0000
committercvs2svn <cvs2svn@FreeBSD.org>2002-05-20 18:50:59 +0000
commitc429227947944e72b892f66c2703e7c1d879719e (patch)
treed7768807d7bcbdee0826ec297c9d60c2315fc405 /include/rpc
parent44566621809f6e7706e5474463108d8a36772d58 (diff)
Notes
Diffstat (limited to 'include/rpc')
-rw-r--r--include/rpc/Makefile31
1 files changed, 31 insertions, 0 deletions
diff --git a/include/rpc/Makefile b/include/rpc/Makefile
new file mode 100644
index 000000000000..a7a40a2251c0
--- /dev/null
+++ b/include/rpc/Makefile
@@ -0,0 +1,31 @@
+# from: @(#)Makefile 2.3 88/08/11 4.0 RPCSRC
+# $FreeBSD$
+
+.SUFFIXES: .x
+
+RPCCOM = rpcgen -C
+
+HDRS= rpcb_prot.h
+
+XFILES= rpcb_prot.x
+
+HFILES= auth.h auth_unix.h clnt.h clnt_soc.h clnt_stat.h \
+ nettype.h pmap_clnt.h pmap_prot.h pmap_rmt.h raw.h \
+ rpc.h rpc_msg.h rpcb_clnt.h rpcent.h rpc_com.h \
+ svc.h svc_auth.h svc_soc.h svc_dg.h types.h xdr.h
+
+# Secure RPC
+HFILES+= auth_des.h des.h des_crypt.h
+
+# Kerberos
+HFILES+= auth_kerb.h
+
+CLEANFILES+= ${HDRS}
+
+INCS= ${HFILES} ${XFILES} ${HDRS}
+INCSDIR=${INCLUDEDIR}/rpc
+
+.x.h:
+ ${RPCCOM} -h -DWANT_NFS3 ${.IMPSRC} -o ${.TARGET}
+
+.include <bsd.prog.mk>