fdb26195f4
Changed Makefile to use <modules>-y instead of <modules>-objs because -objs is deprecated and not mentioned in Documentation/kbuild/makefiles.txt. Signed-off-by: Tracey Dent <tdent48227@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
13 lines
380 B
Makefile
13 lines
380 B
Makefile
#
|
|
# Makefile for Linux kernel rpcsec_gss implementation
|
|
#
|
|
|
|
obj-$(CONFIG_SUNRPC_GSS) += auth_rpcgss.o
|
|
|
|
auth_rpcgss-y := auth_gss.o gss_generic_token.o \
|
|
gss_mech_switch.o svcauth_gss.o
|
|
|
|
obj-$(CONFIG_RPCSEC_GSS_KRB5) += rpcsec_gss_krb5.o
|
|
|
|
rpcsec_gss_krb5-y := gss_krb5_mech.o gss_krb5_seal.o gss_krb5_unseal.o \
|
|
gss_krb5_seqnum.o gss_krb5_wrap.o gss_krb5_crypto.o gss_krb5_keys.o
|