mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 07:46:43 +07:00
8e688d9c16
Move some miscellaneous bits out into their own file to make it easier to split the call handling. Signed-off-by: David Howells <dhowells@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
30 lines
451 B
Makefile
30 lines
451 B
Makefile
#
|
|
# Makefile for Linux kernel RxRPC
|
|
#
|
|
|
|
af-rxrpc-y := \
|
|
af_rxrpc.o \
|
|
ar-accept.o \
|
|
ar-ack.o \
|
|
ar-call.o \
|
|
ar-connection.o \
|
|
ar-connevent.o \
|
|
ar-error.o \
|
|
ar-input.o \
|
|
ar-key.o \
|
|
ar-local.o \
|
|
ar-output.o \
|
|
ar-peer.o \
|
|
ar-recvmsg.o \
|
|
ar-security.o \
|
|
ar-skbuff.o \
|
|
ar-transport.o \
|
|
misc.o
|
|
|
|
af-rxrpc-$(CONFIG_PROC_FS) += ar-proc.o
|
|
af-rxrpc-$(CONFIG_SYSCTL) += sysctl.o
|
|
|
|
obj-$(CONFIG_AF_RXRPC) += af-rxrpc.o
|
|
|
|
obj-$(CONFIG_RXKAD) += rxkad.o
|