diff options
| author | Doug Rabson <dfr@FreeBSD.org> | 2008-03-27 11:55:03 +0000 |
|---|---|---|
| committer | Doug Rabson <dfr@FreeBSD.org> | 2008-03-27 11:55:03 +0000 |
| commit | 6b0d16d374627cfcb0c39328097ffa6b4fa3d0df (patch) | |
| tree | f1038a38960d6be747e52219e97a89040841cc6b /sys/modules/krpc/Makefile | |
| parent | fa9d9930ca1eddfae26cf1a284a943e579464e4d (diff) | |
Notes
Diffstat (limited to 'sys/modules/krpc/Makefile')
| -rw-r--r-- | sys/modules/krpc/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/sys/modules/krpc/Makefile b/sys/modules/krpc/Makefile new file mode 100644 index 000000000000..0755c466c1ec --- /dev/null +++ b/sys/modules/krpc/Makefile @@ -0,0 +1,44 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../rpc ${.CURDIR}/../../xdr +KMOD= krpc +SRCS= auth_none.c \ + auth_unix.c \ + authunix_prot.c \ + clnt_dg.c \ + clnt_rc.c \ + clnt_vc.c \ + getnetconfig.c \ + inet_ntop.c \ + inet_pton.c \ + rpc_callmsg.c \ + rpc_generic.c \ + rpc_prot.c \ + rpcb_clnt.c \ + rpcb_prot.c \ + svc.c \ + svc_auth.c \ + svc_auth_unix.c \ + svc_dg.c \ + svc_generic.c \ + svc_vc.c \ + +SRCS+= xdr.c \ + xdr_array.c \ + xdr_mbuf.c \ + xdr_mem.c \ + xdr_reference.c \ + xdr_sizeof.c + +SRCS+= opt_inet6.h + +.if !defined(KERNBUILDDIR) +NFS_INET6?= 1 # 0/1 - requires INET6 to be configured in kernel + +.if ${NFS_INET6} > 0 +opt_inet6.h: + echo "#define INET6 1" > ${.TARGET} +.endif +.endif + +.include <bsd.kmod.mk> |
