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