mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
9e00abc3c2
Change explicit references to CONFIG_NFS_V4_1 to implicit ones Get rid of the unnecessary defines in backchannel_rqst.c and bc_svc.c: the Makefile takes care of those dependency. Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
18 lines
551 B
Makefile
18 lines
551 B
Makefile
#
|
|
# Makefile for Linux kernel SUN RPC
|
|
#
|
|
|
|
|
|
obj-$(CONFIG_SUNRPC) += sunrpc.o
|
|
obj-$(CONFIG_SUNRPC_GSS) += auth_gss/
|
|
obj-$(CONFIG_SUNRPC_XPRT_RDMA) += xprtrdma/
|
|
|
|
sunrpc-y := clnt.o xprt.o socklib.o xprtsock.o sched.o \
|
|
auth.o auth_null.o auth_unix.o auth_generic.o \
|
|
svc.o svcsock.o svcauth.o svcauth_unix.o \
|
|
addr.o rpcb_clnt.o timer.o xdr.o \
|
|
sunrpc_syms.o cache.o rpc_pipe.o \
|
|
svc_xprt.o
|
|
sunrpc-$(CONFIG_SUNRPC_BACKCHANNEL) += backchannel_rqst.o bc_svc.o
|
|
sunrpc-$(CONFIG_PROC_FS) += stats.o
|
|
sunrpc-$(CONFIG_SYSCTL) += sysctl.o
|